Last active
November 12, 2020 01:54
-
-
Save dtelaroli/f08e715d6b7930dc101823472017dfb1 to your computer and use it in GitHub Desktop.
mac osx enable and disable aac aptx codecs
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
#read | |
sudo defaults read bluetoothaudiod | |
# disable | |
sudo defaults write bluetoothaudiod "Enable AAC codec" -bool false | |
sudo defaults write bluetoothaudiod "Enable AptX code" -bool false | |
# restart | |
# enable | |
sudo defaults write bluetoothaudiod "Enable AAC codec" -bool true | |
sudo defaults write bluetoothaudiod "Enable AptX code" -bool true | |
# restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment