Created
August 4, 2016 07:15
-
-
Save ivikash/29922454b45d35cc588a553aa6747b27 to your computer and use it in GitHub Desktop.
Config file for Music Player Daemon (MPD) on Mac OSX
This file contains hidden or 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
# Basic configuration | |
music_directory "~/Music" | |
playlist_directory "~/.mpd/playlists" | |
db_file "~/.mpd/mpd.db" | |
log_file "~/.mpd/mpd.log" | |
pid_file "~/.mpd.pid" | |
state_file "~/.mpd/mpdstate" | |
# Audio configuration | |
audio_output { | |
type "osx" | |
name "CoreAudio" | |
mixer_type "software" | |
} | |
# Decoder Configuration | |
decoder { | |
plugin "mp4ff" | |
enabled "no" | |
} | |
# Server configuration | |
bind_to_address "127.0.0.1" | |
port "6600" | |
# User Configuration | |
user "vikash" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment