Skip to content

Instantly share code, notes, and snippets.

@kanonji
Last active December 17, 2015 22:19
Show Gist options
  • Save kanonji/5680983 to your computer and use it in GitHub Desktop.
Save kanonji/5680983 to your computer and use it in GitHub Desktop.
mpd 0.16.3 on serversman
port "6600"
playlist_directory "~/.mpd/playlists"
music_directory "~/.mpd/music"
db_file "~/.mpd/mpd.db"
log_file "~/.mpd/mpd.log"
pid_file "~/.mpd/pid"
state_file "~/.mpd/state"
#bind_to_address "127.0.0.1" #does not work
bind_to_address "0.0.0.0"
#bind_to_address "any" #does not work
#password "testpassword@read,add,control,admin"
audio_output {
type "httpd"
name "streaming"
encoder "vorbis"
#encoder "flac"
port "13800"
#quality "5.0"
bitrate "64"
format "44100:16:1"
#format "44100:16:2"
#gapless_mp3_playback "yes" #config: option 'gapless_mp3_playback' on line 23 was not recognized
}
#!/bin/sh
FLAC_CFLAGS="-I/usr/include/FLAC" FLAC_LIBS="-lFLAC" PKG_CONFIG_PATH="/usr/local/lib/pkgconfig" ./configure --disable-sqlite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment