diff options
Diffstat (limited to 'package/mpd/files/mpd.conf')
-rw-r--r-- | package/mpd/files/mpd.conf | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/package/mpd/files/mpd.conf b/package/mpd/files/mpd.conf index 4e3725119..49ef7d4f7 100644 --- a/package/mpd/files/mpd.conf +++ b/package/mpd/files/mpd.conf @@ -3,6 +3,7 @@ user "mpd" music_directory "~/music" playlist_directory "~/.mpd/playlists" db_file "~/.mpd/database" +pid_file "/var/run/mpd/mpd.pid" log_file "~/.mpd/log" error_file "~/.mpd/error-log" # An example of an ALSA output @@ -12,7 +13,26 @@ audio_output { device "hw:0,0" # optional format "44100:16:2" # optional } +# An example of an ESD output +#audio_output { +# type "ao" +# driver "esd" +# name "esd" +#} + # Volume control mixer mixer_type "alsa" -mixer_device "default" -mixer_control "PCM" + +# shout example +#audio_output { +# type "shout" +# name "personal mpd stream" +# host "127.0.0.1" +# port "8000" +# mount "/mpd" +# quality "5.0" +# format "44100:16:2" +# user "source" +# password "musicrockz" +#} + |