RPi MPD install
eLinuxなどを参考にしてMPDをインストール。
- MPDのインストール。
$ sudo apt-get install mpd
- ファイルパーミッションの変更。
$ sudo chmod -R g+w /var/lib/mpd $ sudo chmod -R g+w /var/run/mpd $ sudo rm /var/log/mpd/mpd.log (これは多分不要)
- /etc/mpd.confを編集 して以下の変更を行う。
- music_directoryのpathの変更を行う。このディレクトリへのリードアクセス権が無いとエラーとなるので注意。
- bind_to_address の行の先頭に#を入れてコメントアウト。
# bind_to_address "localhost"
- audio_output のmixer_device、mixer_control、mixer_indexの行をコメントアウト。
audio_output { type "alsa" name "My ALSA Device" device "hw:0,0" # optional format "44100:16:2" # optional # mixer_device "default" # optional # mixer_control "PCM" # optional # mixer_index "0" # optional }
- mixer_type “software”の行を有効化。
mixer_type "software"
- MPDの再起動。
$ sudo /etc/init.d/mpd restart
適当なクライアントで動作を確認。Firefoxのプラインの”Music Player Minion”を使ってみたが、サーバに接続できずに時間を無駄にした。どうもこのクライアントにはバグがあるようだ。
コメントを残す