Last active
December 14, 2024 14:10
-
-
Save robcowie/5100088 to your computer and use it in GitHub Desktop.
Install mpd on OSX 10.8
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
## ~/.mdpconf | |
port "6600" | |
music_directory "~/Music/" | |
playlist_directory "~/.mpd/playlists" | |
db_file "~/.mpd/mpd.db" | |
log_file "~/.mpd/mpd.log" | |
pid_file "~/.mpd/mpd.pid" | |
state_file "~/.mpd/state" | |
#bind_to_address "~/.mpd/mpd.sock" | |
bind_to_address "127.0.0.1" | |
user "name" | |
audio_output { | |
type "osx" | |
name "mac device" | |
mixer_type "software" | |
} |
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
brew install faad2 mpd --with-faad2 --with-libzzip | |
mkdir -p ~/.mpd/playlists | |
touch ~/.mpd/mpd.db | |
brew install ncmpcpp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment