Advertisement
elhackerlibre

mpd.comf

Sep 24th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.13 KB | None | 0 0
  1. music_directory             "~/Música"
  2. playlist_directory          "~/.config/mpd/playlists"
  3. db_file                     "~/.config/mpd/database"
  4. log_file                    "~/.config/mpd/log"
  5. pid_file                    "~/.config/mpd/pid"
  6. state_file                  "~/.config/mpd/state"
  7. sticker_file                "~/.config/mpd/sticker.sql"
  8.  
  9. user                        "virus69"
  10. bind_to_address             "127.0.0.1"
  11. port                        "6600"
  12. auto_update                 "yes"
  13.  
  14. input {
  15.     plugin                  "curl"
  16. #   proxy                   "proxy.isp.com:8080"
  17. #   proxy_user              "user"
  18. #   proxy_password          "password"
  19. }
  20.  
  21.  audio_output {
  22.     type                    "pulse"
  23.     name                    "pulseaudio"
  24. ##  server                  "remote_server"     # optional
  25. ##  sink                    "remote_server_sink"    # optional
  26.  }
  27.  
  28. ## fifo
  29.  audio_output {
  30.     type                    "fifo"
  31.     name                    "FIFO"
  32.     path                    "/tmp/mpd.fifo"
  33.     format                  "44100:16:2"
  34.  }
  35.  
  36. audio_output {
  37.     type                    "httpd"
  38.     name                    "My HTTP Stream"
  39.     encoder                 "vorbis"        # optional, vorbis or lame
  40.     port                    "8000"
  41.     bind_to_address         "0.0.0.0"       # optional, IPv4 or IPv6
  42. ##  quality                 "5.0"           # do not define if bitrate is defined
  43.     bitrate                 "128"           # do not define if quality is defined
  44.     format                  "44100:16:1"
  45.     max_clients             "0"         # optional 0=no limit
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement