What is the AAX file format?
.aax is a multimedia format used for saving audiobooks. .aax is an improvement over the older .aa audiobook format, adding chapter navigation, higher audio quality options, and embedded cover art. The .aax format is used by Audible and Amazon platforms. To access .aax audiobooks, users need to register an Audible account.
Under the hood, .aax is built on the ISO Base Media File Format - the same MP4 container structure used by .m4b audiobooks - with Audible's AES-128 CBC DRM encryption layered on top. The audio is encoded in AAC format at either 64 kbps (standard AAX) or 128 kbps (AAX+). Chapter markers stored in the chpl MP4 box enable per-chapter navigation and splitting. Decryption requires a 4-byte activation_bytes key derived from the user's Audible account credentials, which is why playback requires an authorized device or application.
Audible has offered two quality tiers: standard AAX and the higher-quality AAX+ variant. Since 2021, Audible has been transitioning to the newer .aaxc format, which replaces the account-wide activation_bytes approach with per-book encryption keys.
Advanced users can decrypt .aax files using ffmpeg with the -activation_bytes flag, enabling conversion to standard audio formats for archival purposes.
Security & safety
RISK: LOWAAX files from Audible are safe; they are DRM-encrypted and play only in authorized apps. Risk arises only if a file labeled .aax is obtained from unofficial sources - unlikely since the DRM makes piracy distribution in this format uncommon. Third-party DRM-removal tools are legal in some jurisdictions for personal backup (format-shifting) and illegal in others (US DMCA §1201).
Format details
in a nutshellPrograms that open AAX files
Technical details
deep spec| Container format | ISO Base Media File Format (ISOBMFF / MP4 box structure); `ftyp` brand `AAVD` |
| Magic location | `ftyp` box at offset 4; first 4 bytes are box size as a 32-bit big-endian integer |
| Audio codec | AAC-LC (Low Complexity profile) |
| Audio bitrate tiers | 64 kbps (standard AAX) or 128 kbps (AAX+) |
| Sample rate | 22,050 Hz (standard AAX) or 44,100 Hz (AAX+) |
| DRM encryption | AES-128 in CBC mode; decryption requires per-account 4-byte `activation_bytes` key |
| DRM key storage | Encrypted key material in `adrmB` and `adrmS` MP4 boxes |
| Chapter markers | Stored in the `chpl` (chapter list) MP4 box; enables per-chapter navigation and splitting |
| Typical file size | 50 MB - 900 MB for audiobooks of 1-40+ hours |
| FFmpeg decryption | `ffmpeg -activation_bytes <8-hex-chars> -i input.aax output.m4b` |
| Successor format | `.aaxc` - per-book key encryption introduced by Audible beginning in 2021 |
| Byte order | Big-endian (MP4 / ISOBMFF specification) |
| Platform support | Windows, macOS, Android, iOS, Amazon Kindle and Fire devices |
| Released | 2011 (superseded AA format on Audible platform) |
| Latest version | AAX+ (128 kbps); being superseded by AAXC (2021) |
| Specification | www.audible.com |
AAX conversions
Community Q&A
asked by usersNo questions yet - be the first to ask about AAX files.