Files
navidrome/config/mpd/mpd.conf
T

44 lines
1.9 KiB
Plaintext
Raw Normal View History

2022-09-06 22:33:07 -04:00
# Files and directories #######################################################
music_directory "/data/music"
playlist_directory "/data/playlists"
log_file "/data/mpd/mpd.log"
pid_file "/data/mpd/mpd.pid"
2022-09-10 16:05:13 -04:00
db_file "/data/mpd/cache.db"
state_file "/data/mpd/state.txt"
2022-09-06 23:38:58 -04:00
sticker_file "/data/mpd/sticker.sql"
2022-09-10 16:38:37 -04:00
user "root"
2022-09-06 22:33:07 -04:00
bind_to_address "0.0.0.0"
port "6600"
log_level "default"
restore_paused "no"
save_absolute_paths_in_playlists "yes"
metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
auto_update "yes"
auto_update_depth "5"
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
zeroconf_enabled "no"
zeroconf_name "mpd server"
# Character Encoding ##########################################################
filesystem_charset "UTF-8"
2022-09-10 12:06:25 -04:00
# Output #######################################################################
audio_output {
2022-09-10 16:05:13 -04:00
type "null"
2022-09-30 17:56:19 -04:00
name "This server does not need to play navidrome, but it can"
2022-09-10 12:06:25 -04:00
}
2022-09-10 14:37:49 -04:00
audio_output {
2022-09-10 16:05:13 -04:00
type "httpd"
name "stream"
encoder "lame"
port "8000"
bitrate "128"
max_clients "0"
mixer_type "software"
format "44100:16:2"
2022-09-10 14:37:49 -04:00
}
2022-09-10 12:57:58 -04:00
# Input #######################################################################
input {
2022-09-10 16:05:13 -04:00
plugin "curl"
2022-09-10 12:57:58 -04:00
}
2022-09-06 22:33:07 -04:00
###############################################################################