Skip to content

Instantly share code, notes, and snippets.

@dcchambers
Last active August 27, 2019 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcchambers/4b766a38ebdf57d0852151c540227d2e to your computer and use it in GitHub Desktop.
Save dcchambers/4b766a38ebdf57d0852151c540227d2e to your computer and use it in GitHub Desktop.
Change Bluetooth Audio Coded on Mac

Courtey of Macrumors

The default bluetooth audio codec on mac kind of sucks.

To enable aptX, enter this in your terminal:

  • sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true

To enable AAC, enter this in your terminal:

  • sudo defaults write bluetoothaudiod "Enable AAC codec" -bool true

To disable either codec via Terminal, simply replace -bool true with -bool false at the end of the command.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment