-
-
Save niloybiswas/521a600c2837a04014c46703a3d850f0 to your computer and use it in GitHub Desktop.
Fixing bluetooth stereo headphone/headset problem in ubuntu 16.04, 16.10 and also debian jessie, with bluez5.
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
| #! /usr/bin/env python3.5 | |
| """ | |
| Fixing bluetooth stereo headphone/headset problem in ubuntu 16.04 and also debian jessie, with bluez5. | |
| Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197 | |
| Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone. | |
| Only works with bluez5. | |
| See `a2dp.py -h` for info. | |
| Check here for the latest updates: https://gist.github.com/pylover/d68be364adac5f946887b85e6ed6e7ae | |
| Vahid Mardani | |
| Change Log | |
| ---------- | |
| **0.1.1** | |
| * Supporting the `[NEW]` prefix for devices & controllers as advised by @wdullaer | |
| * Drying the code. | |
| """ | |
| import sys | |
| import re | |
| import asyncio | |
| import subprocess as sb | |
| import argparse | |
| __version__ = '0.1.1' | |
| HEX_DIGIT_PATTERN = '[0-9A-F]' | |
| HEX_BYTE_PATTERN = '%s{2}' % HEX_DIGIT_PATTERN | |
| MAC_ADDRESS_PATTERN = ':'.join((HEX_BYTE_PATTERN, ) * 6) | |
| DEVICE_PATTERN = re.compile('^(?:\[NEW\]\s)?Device\s(?P<mac>%s)\s(?P<name>.*)' % MAC_ADDRESS_PATTERN) | |
| CONTROLLER_PATTERN = re.compile('^(?:\[NEW\]\s)?Controller\s(?P<mac>%s)\s(?P<name>.*)' % MAC_ADDRESS_PATTERN) | |
| LONG_SLEEP = 1 | |
| SHORT_SLEEP = .5 | |
| class SubprocessError(Exception): | |
| pass | |
| class RetryExceededError(Exception): | |
| pass | |
| class BluetoothctlProtocol(asyncio.SubprocessProtocol): | |
| def __init__(self, exit_future, echo=True): | |
| self.exit_future = exit_future | |
| self.transport = None | |
| self.output = None | |
| self.echo = echo | |
| def listen_output(self): | |
| self.output = '' | |
| def not_listen_output(self): | |
| self.output = None | |
| def pipe_data_received(self, fd, raw): | |
| d = raw.decode() | |
| if self.echo: | |
| print(d, end='') | |
| if self.output is not None: | |
| self.output += d | |
| def process_exited(self): | |
| self.exit_future.set_result(True) | |
| def connection_made(self, transport): | |
| self.transport = transport | |
| print('Connection MADE') | |
| async def send_command(self, c): | |
| stdin_transport = self.transport.get_pipe_transport(0) | |
| # noinspection PyProtectedMember | |
| stdin_transport._pipe.write(('%s\n' % c).encode()) | |
| async def search_in_output(self, expression, fail_expression=None): | |
| if self.output is None: | |
| return None | |
| for l in self.output.splitlines(): | |
| if fail_expression and re.search(fail_expression, l, re.IGNORECASE): | |
| raise SubprocessError('Expression "%s" failed with fail pattern: "%s"' % (l, fail_expression)) | |
| if re.search(expression, l, re.IGNORECASE): | |
| return True | |
| async def send_and_wait(self, cmd, wait_expression, fail_expression='fail'): | |
| try: | |
| self.listen_output() | |
| await self.send_command(cmd) | |
| while not await self.search_in_output(wait_expression.lower(), fail_expression=fail_expression): | |
| await asyncio.sleep(SHORT_SLEEP) | |
| finally: | |
| self.not_listen_output() | |
| async def disconnect(self, mac): | |
| await self.send_and_wait('disconnect %s' % ':'.join(mac), 'Successful disconnected') | |
| async def connect(self, mac): | |
| await self.send_and_wait('connect %s' % ':'.join(mac), 'Connection successful') | |
| async def trust(self, mac): | |
| await self.send_and_wait('trust %s' % ':'.join(mac), 'trust succeeded') | |
| async def quit(self): | |
| await self.send_command('quit') | |
| async def list_devices(self): | |
| result = [] | |
| try: | |
| self.listen_output() | |
| await self.send_command('devices') | |
| await asyncio.sleep(LONG_SLEEP) | |
| for l in self.output.splitlines(): | |
| m = DEVICE_PATTERN.match(l) | |
| if m: | |
| result.append(m.groups()) | |
| return result | |
| finally: | |
| self.not_listen_output() | |
| async def list_controllers(self): | |
| result = [] | |
| try: | |
| self.listen_output() | |
| await self.send_command('list') | |
| await asyncio.sleep(LONG_SLEEP) | |
| for l in self.output.splitlines(): | |
| m = CONTROLLER_PATTERN.match(l) | |
| if m: | |
| result.append(m.groups()) | |
| return result | |
| finally: | |
| self.not_listen_output() | |
| async def select_device(self): | |
| devices = await self.list_devices() | |
| count = len(devices) | |
| if count < 1: | |
| raise SubprocessError('There is no connected device.') | |
| elif count == 1: | |
| return devices[0] | |
| for i, d in enumerate(devices): | |
| print('%d. %s %s' % (i+1, d[0], d[1])) | |
| print('Select device[1]:') | |
| selected = input() | |
| return devices[int(selected) - 1] | |
| async def execute_command(cmd): | |
| p = await asyncio.create_subprocess_shell(cmd, stdout=sb.PIPE, stderr=sb.PIPE) | |
| stdout, stderr = await p.communicate() | |
| stdout, stderr = \ | |
| stdout.decode() if stdout is not None else '', \ | |
| stderr.decode() if stderr is not None else '' | |
| if p.returncode != 0 or stderr.strip() != '': | |
| raise SubprocessError('Command: %s failed with status: %s\nstderr: %s' % (cmd, p.returncode, stderr)) | |
| return stdout | |
| async def execute_find(cmd, pattern, tries=1, message=''): | |
| retry_message = ', Retrying %d more times' | |
| while True: | |
| stdout = await execute_command(cmd) | |
| match = re.search(pattern, stdout) | |
| if match: | |
| return match.group() | |
| elif tries > 0: | |
| await asyncio.sleep(LONG_SLEEP) | |
| print(message + retry_message % tries) | |
| tries -= 1 | |
| continue | |
| raise RetryExceededError('Retry times exceeded: %s' % message) | |
| async def find_dev_id(mac, tries=12): | |
| return await execute_find( | |
| 'pactl list cards short', | |
| 'bluez_card.%s' % '_'.join(mac), | |
| tries=tries, | |
| message='Cannot list cards using `pactl`' | |
| ) | |
| async def find_sink(mac, tries=12): | |
| return await execute_find( | |
| 'pacmd list-sinks', | |
| 'bluez_sink.%s' % '_'.join(mac), | |
| tries=tries, | |
| message='Cannot list sinks using `pacmd`' | |
| ) | |
| async def set_profile(device_id, profile='a2dp_sink'): | |
| return await execute_command('pactl set-card-profile %s %s' % (device_id, profile)) | |
| async def set_default_sink(sink): | |
| return await execute_command('pacmd set-default-sink %s' % sink) | |
| async def main(args, loop): | |
| mac = args.mac | |
| exit_future = asyncio.Future() | |
| transport, protocol = await loop.subprocess_exec( | |
| lambda: BluetoothctlProtocol(exit_future, echo=args.echo), 'bluetoothctl' | |
| ) | |
| try: | |
| if mac is None: | |
| print('Selecting device:') | |
| mac, _ = await protocol.select_device() | |
| mac = mac.split(':' if ':' in mac else '_') | |
| print('Device MAC: %s' % ':'.join(mac)) | |
| device_id = await find_dev_id(mac, tries=5) | |
| if device_id is None: | |
| await protocol.trust(mac) | |
| await protocol.connect(mac) | |
| device_id = await find_dev_id(mac) | |
| sink = await find_sink(mac) | |
| if sink is None: | |
| await set_profile(device_id) | |
| sink = await find_sink(mac) | |
| print('Device ID: %s' % device_id) | |
| print('Sink: %s' % sink) | |
| print('Turning off audio profile.') | |
| await set_profile(device_id, profile='off') | |
| print('Disconnecting the device.') | |
| await protocol.disconnect(mac) | |
| print('Connecting again.') | |
| await protocol.connect(mac) | |
| print('Setting A2DP profile') | |
| device_id = await find_dev_id(mac) | |
| print('Device ID: %s' % device_id) | |
| await set_profile(device_id) | |
| print('Updating default sink') | |
| await set_default_sink(sink) | |
| except (SubprocessError, RetryExceededError) as ex: | |
| print(str(ex), file=sys.stderr) | |
| return 1 | |
| finally: | |
| print('Exiting bluetoothctl') | |
| await protocol.quit() | |
| await exit_future | |
| # Close the stdout pipe | |
| transport.close() | |
| print('Enjoy HiFi stereo music!') | |
| if __name__ == '__main__': | |
| parser = argparse.ArgumentParser(prog=sys.argv[0]) | |
| parser.add_argument('-e', '--echo', action='store_true', default=False) | |
| parser.add_argument('mac', nargs='?', default=None) | |
| main_loop = asyncio.get_event_loop() | |
| sys.exit(main_loop.run_until_complete(main(parser.parse_args(), main_loop))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment