How to Enable the Optimal Audio Codec for Your Bluetooth Headphones in macOS

Saturday, December 19, 2020 8:31 AM


How to Enable the Optimal Audio Codec for Your Bluetooth Headphones in macOS



How good your digital music sounds often comes down to which file format it's encoded in. Be that as it may, every Mac audio setup is only as strong as it's weakest link, and if your Bluetooth connection isn't up to scratch, even the best BT headphones will fail to deliver a decent wireless listening experience.

By design, all Bluetooth devices support the low-power SBC audio compression codec as standard. Fortunately, modern Macs also support AAC (Apple's preferred iTunes codec) and aptX, which Android devices often use. These two codecs offer higher quality audio and generally lower latency than SBC, which is why most third-party wireless headphones on the market support one or the other, and sometimes both. 

mac bluetooth audio codec aptx aac
Yet for whatever reason, despite their AAC/aptX support, some headphones fall back to the bog-standard SBC codec when connected to a Mac. This can lead to a particularly underwhelming audio experience, not to mention latency-related sync issues, which will be a distinct concern if you use your headphones while gaming or watching movies. 

Thankfully, it's possible to force macOS to connect to your headphones using one of the two superior codecs. In this article, we'll show you how to do so using Apple's Bluetooth Explorer utility. (And if you're comfortable opening a Terminal window, we've included a couple of commands at the end that do the same thing.)

Bluetooth audio codecs
But first, it's worth checking which codecs your brand of headphones actually supports: Look for codec logos on the box, and make sure to check for references to codecs in the manual and any accompanying/online spec sheets. 

Once you've established that your headphones support aptX and/or AAC, you'll want to identify which codec is being activated when you connect the headphones to your Mac. Follow these steps to find out.

How to Identify Which Bluetooth Codec is Active

  1. Establish a Bluetooth connection between your Mac and headphones in the normal manner.
  2. Play some audio on your Mac so that it's streaming to the headphones.
  3. Now hold down the Option (Alt) key and click on the Bluetooth symbol in the menu bar. (If you don't see it there, you need to check Show Bluetooth in menu bar in System Preferences -> Bluetooth.)
  4. Hover your mouse cursor over the headphones in the connection list. You should see the headphones' Active Codec shown in grey.
    active bluetooth codec macos

    If your headphones are using AAC or aptX, you don't need to do anything. Without going into the technical details, both standards provide relatively stable wireless connections and – as far as Bluetooth goes – comparably decent sound quality. However, if the codec shown is SBC, you'll probably want to change it. Here's how.

    How to Force-Enable aptX and AAC Codecs in macOS

    1. Open a web browser, navigate to Apple's developer downloads page, and download Additional Tools for Xcode 9 [Direct Link] which contains Apple's Bluetooth Explorer utility. Note that to access the page you'll need to register for a free Apple developer account if you don't already have one. Alternatively, use Google to find the Bluetooth Explorer utility hosted elsewhere and skip to step 5, but if you're not downloading from Apple, be sure to screen the file for malware.
      xcode developer tools
    2. Once downloaded, double-click the Additional Tools dmg file to mount it on your desktop.
    3. Open the Additional Tools drive and navigate to the Hardware folder.
    4. Open your Mac's Applications folder in another Finder window or tab.
      Bluetooth Explorer copy
    5. Drag Bluetooth Explorer into your Mac's Applications folder and launch the app from there.
    6. From the Bluetooth Explorer menu bar, select Tools -> Audio Options.
    7. In the Codecs section, tick the checkboxes alongside Enable AAC and/or Force use of aptX (depending on your issue). Make sure Disable AAC and Disable aptX are left unchecked.
      Bluetooth Utility codec enable
    8. Click Close to finish.
    9. Restart your Mac, or reset the Bluetooth module.
  5. When your Mac reboots, you can confirm that the codec change has been applied by following the first series of steps in this article.

    Terminal commands for enabling AAC and aptX Codecs

    To enable aptX, input the following command, press Enter, and type your user password if prompted:
    sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true

    Alternatively, to enable AAC, input the following and press Enter:
    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.