Created
January 22, 2018 21:43
-
-
Save marnovo/49620d616725fb773a6373843c8e606d to your computer and use it in GitHub Desktop.
Enable AptX and AAC codecs on macOS
This file contains 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
# (c) 2018 Marcelo Novaes | |
# License - MIT | |
# Enable AptX and AAC codecs on bluetooth connections on macOS | |
sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true | |
sudo defaults write bluetoothaudiod "Enable AAC code" -bool true | |
# Reads set values, should return something like: | |
# { | |
# "Enable AAC code" = 1; | |
# "Enable AptX codec" = 1; | |
# } | |
sudo defaults read bluetoothaudiod | |
# You should be able to check it by connecting a compatible bluetooth device, playing some | |
# compatible music and then holding Option (Alt) and clicking on the Bluetooth menu bar icon. | |
# This should show you inside the connected device menu item Active Codec: AptX (or AAC) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment