Pavucontrol cevabı doğru. Ancak kullandığım zorluklar kutunun dışında. Bt kulaklığımı kullanmak için pavucontrol kullanmadan önce aşağıdakini yazmak zorunda kaldım:
pactl load-module module-alsa-sink device=btheadset
Yazmanın başarılı olup olmadığını kontrol edebilirsiniz:
pactl list short sinks
Çıktı şuna benzemelidir:
0 alsa_output.pci-0000_03_04.0.iec958-stereo modülü-alsa-kartı.c s16le 2ch 44100Hz KATILDI
2 alsa_output.btheadset modülü-alsa-sink.c s16le 2ch 44100Hz İLE
Ayrıca alsa / pulseaudio'dan 'toBt.sh' olarak adlandırdığım sese geçiş yapmak için kısa bir senaryo var:
#!/bin/bash
OCHANNEL=`pactl list modules short | grep btheadset | cut -f 1`
for i in $OCHANNEL; do
echo "altes module $i"
pactl unload-module $i
done
CHANNEL=`pactl load-module module-alsa-sink device=btheadset`
echo "neues module $CHANNEL"
if [ $? -ne 0 ]; then
echo "No bt connection"
exit -1
fi
SINK=`pactl list sinks short | grep btheadset | cut -f 1`
INPUTS=`pactl list sink-inputs short | cut -f 1`
for i in $INPUTS; do
echo "Verschiebe in $i nach $SINK"
pactl move-sink-input $i $SINK
done
Alsa / pulseaudio sesine geri dönmek için 'toAlsa.sh' yazdım:
#!/bin/bash
SINK=`pactl list sinks short | grep alsa-card | cut -f 1`
INPUTS=`pactl list sink-inputs short | cut -f 1`
for i in $INPUTS; do
echo "Verschiebe in $i nach $SINK"
pactl move-sink-input $i $SINK
done
pavucontrol
Aradığın tür bir şey mi?