I have the S305 Motorola bluetooth headset. I can control other music players (like Audacious or Goggles) from my headset but not VLC.
Is there some way to control VLC with a BT headset?
I have the S305 Motorola bluetooth headset. I can control other music players (like Audacious or Goggles) from my headset but not VLC.
Is there some way to control VLC with a BT headset?
First download some packages
sudo apt-get install bluez-utils bluez-gnome bluez-alsa
Find the MAC of the headset
sudo hcitool scan
The output will look something like this:
$ sudo hcitool scan
Scanning ...
XX:XX:XX:XX:XX:XX Stereo Headset
Setup ~/.asoundrc
file
pcm.bluetooth {
type bluetooth
device "XX:XX:XX:XX:XX:XX"
profile "auto"
}
Reboot
sudo reboot
Connect Bluetooth Headset
Change alsa-audio-device
in ~/.config/vlc/vlcrc
:
gedit ~/.config/vlc/vlcrc
Find:
# Audio output device (string)
# alsa-audio-device=default
And change it to
# Audio output device (string)
alsa-audio-device=bluetooth
Hope this help.