Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- music_directory "~/Music/"
- playlist_directory "~/Playlists"
- db_file "~/.config/mpd/database"
- log_file "~/.config/mpd/log"
- pid_file "~/.config/mpd/pid"
- state_file "~/.config/mpd/mpdstate"
- auto_update "yes"
- audio_output {
- type "alsa" # Use the ALSA output plugin.
- name "ALSA" # Must be present and does not have to match the actual card name , e.g. what you have in /etc/asound.conf
- options "dev=dmixer"
- device "plug:dmix" # Both lines cause MPD to output to dmix
- format "44100:16:2" # the actual format
- auto_resample "no" # This bypasses ALSA's own algorithms, which generally are inferior. See below how to choose a different one.
- }
- audio_output {
- type "fifo"
- name "my_fifo"
- path "/tmp/mpd.fifo"
- format "44100:16:2"
- }
- bind_to_address "127.0.0.1"
- port "6601"
- mixer_type "software"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement