volumioをBluetoothスピーカー化
volumioをBluetoothスピーカー化してスマホからの音楽をBluetoothでRaspberry piに飛ばして、Raspberry piにつないだDACで鳴らしたい。というわけで、調べました。
まあ、基本はこのサイトの通り
Raspberry PI 3 で Bluetooth(A2DP)
私の環境はvolumioですが、、、ベースは、Raspbianのようですので、同じ手順でできました。
レシーバーには、エレコムのbt4.0対応のUSB接続のものを使いました。
①パッケージのインストール
sudo apt install pulseaudio-module-bluetooth
②「/etc/systemd/system/pulseaudio.service」ファイルを作成する。
[Unit]
Description=Pulse Audio
[Service]
Type=simple
ExecStart=/usr/bin/pulseaudio --system --disallow-exit --disable-shm
[Install]
WantedBy=multi-user.target
Description=Pulse Audio
[Service]
Type=simple
ExecStart=/usr/bin/pulseaudio --system --disallow-exit --disable-shm
[Install]
WantedBy=multi-user.target
③「/etc/dbus-1/system.d/pulseaudio-bluetooth.conf」ファイルを作成する。
<busconfig>
<policy user="pulse">
<allow send_destination="org.bluez"/>
</policy>
</busconfig>
<policy user="pulse">
<allow send_destination="org.bluez"/>
</policy>
</busconfig>
④「/etc/pulse/system.pa」ファイルの最後に以下の内容を追加する。
### Automatically load driver modules for Bluetooth hardware
.ifexists module-bluetooth-policy.so
load-module module-bluetooth-policy
.endif
.ifexists module-bluetooth-discover.so
load-module module-bluetooth-discover
.endif
.ifexists module-bluetooth-policy.so
load-module module-bluetooth-policy
.endif
.ifexists module-bluetooth-discover.so
load-module module-bluetooth-discover
.endif
⑤pulseaudioサービスを起動
sudo systemctl start pulseaudio.service
あとは、
sudo bluetoothctl コマンドで、スマホとの接続をするだけです。
で、私の環境でもうまくつながったのですが、音が鳴らない。
で、失敗かと思ったのですが、どうも、HDMIの方に出力されている!
DACで鳴らすまでもう一息です。
2021年01月30日