Advertisement
ravmunken

mpd.conf

Oct 12th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.25 KB | None | 0 0
  1. # See: /usr/share/doc/mpd/mpdconf.example
  2.  
  3. playlist_directory "~/.mpd/playlists"
  4. db_file "~/.mpd/mpd.db"
  5. #db_file "/var/lib/mpd/mpd.db"
  6. log_file "~/.mpd/mpd.log"
  7. pid_file "~/.mpd/mpd.pid"
  8. #mpd_music_dir "$HOME/Music"
  9. #error_file "~/.mpd/mpd.error"
  10.  
  11. user "akarin"
  12. #pid_file "/run/mpd/mpd.pid"
  13. #db_file "/var/lib/mpd/mpd.db"
  14. state_file "/var/lib/mpd/mpdstate"
  15. #playlist_directory "/var/lib/mpd/playlists"
  16. music_directory "/home/akarin/Music"
  17.  
  18. #port "6600"
  19. #bind_to_address "127.0.0.1"
  20.  
  21. audio_output {
  22.         type            "alsa"
  23.         name            "MPD PulseAudio Output"
  24.         mixer_type      "software"
  25.         mixer_device    "default"
  26.         mixer_control   "Master"
  27.         mixer_index     "0"
  28.         device          "default"
  29.     format      "44100:16:2"
  30. }
  31.  
  32.  
  33. #audio_output {
  34. #   type        "alsa"
  35. #   name        "My ALSA Device"
  36. #   device      "hw:0,0"    # optional
  37. #   format      "44100:16:2"    # optional
  38. #   mixer_type      "software"  # optional
  39. #   mixer_device    "default"   # optional
  40. #   mixer_control   "PCM"       # optional
  41. ##  mixer_index "0"     # optional
  42. #}
  43.  
  44. audio_output {
  45.     type                    "fifo"
  46.     name                    "my_fifo"
  47.     path                    "/tmp/mpd.fifo"
  48.     format                  "44100:16:2"
  49. }
  50.  
  51. filesystem_charset "UTF-8"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement