Add mopidy configuration
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
6316a1e7f0
commit
815701243f
2 changed files with 104 additions and 0 deletions
|
@ -27,6 +27,7 @@ CONFIG_LINKED_FILES_HOME=(
|
||||||
".config/httpie"
|
".config/httpie"
|
||||||
".config/i3"
|
".config/i3"
|
||||||
".config/maven"
|
".config/maven"
|
||||||
|
".config/mopidy"
|
||||||
".config/mpd"
|
".config/mpd"
|
||||||
".config/mpv"
|
".config/mpv"
|
||||||
".config/MusicBrainz"
|
".config/MusicBrainz"
|
||||||
|
|
103
system/.config/mopidy/mopidy.conf
Normal file
103
system/.config/mopidy/mopidy.conf
Normal file
|
@ -0,0 +1,103 @@
|
||||||
|
# For further information about options in this file see:
|
||||||
|
# https://docs.mopidy.com/
|
||||||
|
#
|
||||||
|
# The initial commented out values reflect the defaults as of:
|
||||||
|
# Mopidy 3.0.2
|
||||||
|
# Mopidy-File 3.0.2
|
||||||
|
# Mopidy-HTTP 3.0.2
|
||||||
|
# Mopidy-M3U 3.0.2
|
||||||
|
# Mopidy-SoftwareMixer 3.0.2
|
||||||
|
# Mopidy-Stream 3.0.2
|
||||||
|
#
|
||||||
|
# Available options and defaults might have changed since then,
|
||||||
|
# run `mopidy config` to see the current effective config and
|
||||||
|
# `mopidy --version` to check the current version.
|
||||||
|
|
||||||
|
[core]
|
||||||
|
#cache_dir = $XDG_CACHE_DIR/mopidy
|
||||||
|
#config_dir = $XDG_CONFIG_DIR/mopidy
|
||||||
|
#data_dir = $XDG_DATA_DIR/mopidy
|
||||||
|
#max_tracklist_length = 10000
|
||||||
|
#restore_state = false
|
||||||
|
|
||||||
|
[logging]
|
||||||
|
#verbosity = 0
|
||||||
|
#format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s
|
||||||
|
#color = true
|
||||||
|
#config_file =
|
||||||
|
|
||||||
|
[audio]
|
||||||
|
#mixer = software
|
||||||
|
#mixer_volume =
|
||||||
|
#output = autoaudiosink
|
||||||
|
#buffer_time =
|
||||||
|
|
||||||
|
[proxy]
|
||||||
|
#scheme =
|
||||||
|
#hostname =
|
||||||
|
#port =
|
||||||
|
#username =
|
||||||
|
#password =
|
||||||
|
|
||||||
|
[file]
|
||||||
|
enabled = false
|
||||||
|
#media_dirs =
|
||||||
|
# $XDG_MUSIC_DIR|Music
|
||||||
|
# ~/|Home
|
||||||
|
#excluded_file_extensions =
|
||||||
|
# .directory
|
||||||
|
# .html
|
||||||
|
# .jpeg
|
||||||
|
# .jpg
|
||||||
|
# .log
|
||||||
|
# .nfo
|
||||||
|
# .pdf
|
||||||
|
# .png
|
||||||
|
# .txt
|
||||||
|
# .zip
|
||||||
|
#show_dotfiles = false
|
||||||
|
#follow_symlinks = false
|
||||||
|
#metadata_timeout = 1000
|
||||||
|
|
||||||
|
[http]
|
||||||
|
#enabled = true
|
||||||
|
#hostname = 127.0.0.1
|
||||||
|
#port = 6680
|
||||||
|
#zeroconf = Mopidy HTTP server on $hostname
|
||||||
|
#allowed_origins =
|
||||||
|
#csrf_protection = true
|
||||||
|
#default_app = mopidy
|
||||||
|
|
||||||
|
[m3u]
|
||||||
|
#enabled = true
|
||||||
|
#base_dir = $XDG_MUSIC_DIR
|
||||||
|
#default_encoding = latin-1
|
||||||
|
#default_extension = .m3u8
|
||||||
|
#playlists_dir =
|
||||||
|
|
||||||
|
[softwaremixer]
|
||||||
|
#enabled = true
|
||||||
|
|
||||||
|
[stream]
|
||||||
|
#enabled = true
|
||||||
|
#protocols =
|
||||||
|
# http
|
||||||
|
# https
|
||||||
|
# mms
|
||||||
|
# rtmp
|
||||||
|
# rtmps
|
||||||
|
# rtsp
|
||||||
|
#metadata_blacklist =
|
||||||
|
#timeout = 5000
|
||||||
|
|
||||||
|
[mpd]
|
||||||
|
hostname = ::
|
||||||
|
command_blacklist = []
|
||||||
|
|
||||||
|
[jellyfin]
|
||||||
|
hostname = https://media.kaderli.dev
|
||||||
|
username = severin
|
||||||
|
password =
|
||||||
|
libraries = Music
|
||||||
|
albumartistsort = False (Optional: will default to True if left undefined)
|
||||||
|
album_format = {ProductionYear} - {Name} (Optional: will default to "{Name}" if left undefined)
|
Loading…
Add table
Add a link
Reference in a new issue