1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/mpd/mpd.conf

52 lines
1.2 KiB
Plaintext
Raw Normal View History

2016-08-17 03:09:57 +00:00
music_directory "/var/lib/mpd/music"
playlist_directory "/var/lib/mpd/playlists"
db_file "/var/lib/mpd/database"
log_file "/var/log/mpd/mpd.log"
2016-08-23 14:12:37 +00:00
pid_file "/var/run/mpd.pid"
2016-08-17 03:09:57 +00:00
state_file "/var/lib/mpd/state"
sticker_file "/var/lib/mpd/sticker.sql"
input {
2016-08-23 14:12:37 +00:00
plugin "alsa"
2016-08-17 03:09:57 +00:00
}
2016-08-18 18:31:46 +00:00
input {
2016-08-23 14:12:37 +00:00
plugin "curl"
2016-08-18 18:31:46 +00:00
}
2016-08-17 03:09:57 +00:00
audio_output {
type "alsa"
2016-08-23 12:18:02 +00:00
name "My ALSA Device"
2016-08-17 03:09:57 +00:00
mixer_type "software"
}
2016-08-23 14:12:37 +00:00
audio_output {
type "pulse"
name "My Pulse Output"
server "172.17.0.1"
sink "bluez_sink.E8_07_BF_46_F4_B1"
}
2016-08-17 16:54:11 +00:00
audio_output {
type "httpd"
name "My HTTP Stream"
encoder "vorbis"
port "8800"
bitrate "128"
format "44100:16:1"
always_on "yes"
tags "yes"
}
2016-08-17 12:22:38 +00:00
audio_output {
type "shout"
encoding "ogg"
name "My Shout Stream"
host "icecast"
port "8000"
mount "/mpd.ogg"
password "hackme"
bitrate "128"
format "44100:16:1"
}