AAX to PCM WAV decrypter
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Jan Petykiewicz 8ed0c8e44d add gitignore 7 年前
py_aax_decode whitespace fixup 7 年前
.gitignore add gitignore 7 年前
LICENSE.md license and readme 7 年前
README.md license and readme 7 年前

README.md

py_aax_decode

py_aax_decode is a python script which decodes Audible AAX files into PCM WAV format.

This script requires a functioning installation of Audible Manager for Windows, capable of playing back the AAX file in question. The script simply calls functions in AAXSDKWin.dll to decode the AAX file, and then writes the resulting audio data to disk.

Installation

  • Install Audible Manager and sign in to your account.
  • Run the script:
python3 -c "from py_aax_decode import main; main('c:\\path\\to\\input.aax', 'c:\\path\\to\\output.wav')"
  • If you're not on 64-bit Windows or have Audible in a non-default location, you will need to provide the path to AAXSDKWin.dll:
python3 -c "from py_aax_decode import main; main('c:\\path\\to\\input.aax', 'c:\\path\\to\\output.wav', dll_path='C:\\Program Files\\Audible\\Bin\\AAXSDKWin.dll')"