Created
February 9, 2015 10:38
-
-
Save Sp1l/1ea680233e4948f9822d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
music_directory "/home/www/Music" | |
playlist_directory "/var/mpd/playlists" | |
db_file "/var/mpd/database" | |
log_file "/var/mpd/log" | |
pid_file "/var/mpd/pid" | |
state_file "/var/mpd/state" | |
sticker_file "/var/mpd.mpd/sticker.sql" | |
user "mpd" | |
bind_to_address "any" | |
input { | |
plugin "curl" | |
} | |
audio_output { | |
type "shout" | |
encoding "ogg" # optional | |
name "IceCast" | |
host "localhost" | |
port "8000" | |
mount "/mpd" | |
password "mypass" | |
quality "9" | |
format "44100:16:2" | |
protocol "icecast2" # optional | |
} | |
audio_output { | |
type "null" | |
name "My Null Output" | |
mixer_type "none" # optional | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment