diff options
Diffstat (limited to 'mpd/mpd.conf')
-rw-r--r-- | mpd/mpd.conf | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/mpd/mpd.conf b/mpd/mpd.conf new file mode 100644 index 0000000..929a3a5 --- /dev/null +++ b/mpd/mpd.conf @@ -0,0 +1,39 @@ +## Configuracion + +# Basico +music_directory "/home/matias/Music" +playlist_directory "/home/matias/.mpd/playlists" +db_file "/home/matias/.mpd/mpd.db" +log_file "/home/matias/.mpd/mpd.log" +pid_file "/home/matias/.mpd/pid.log" +state_file "/home/matias/.mpd/mpdstate" + +# Audio +#audio_output { +# type "alsa" +# name "MPD Sound Device" +# options "dev=dmixer" +#} + +audio_output { + type "pulse" + name "MPD Sound Device (Pulseaudio)" +} + +audio_output { + type "fifo" + name "my_fifo" + path "/tmp/mpd.fifo" + format "44100:16:2" +} + +audio_output { + type "httpd" + name "My HTTP Stream" + encoder "lame" + port "8000" + bind_to_address "0.0.0.0" + bitrate "128" + format "44100:16:1" + max_clients "0" +} |