IMA ADPCM Audio Tool is a console-based utility for encoding and decoding audio files using the IMA ADPCM format.
Originally built for mono audio, it now includes full support for stereo files, maintaining compatibility with 16-bit WAV PCM sources.
- Encode 16-bit PCM WAV files (mono or stereo) into the IMA ADPCM format.
- Decode IMA ADPCM files (mono or stereo) back to 16-bit PCM WAV.
- Support for headerless IMA ADPCM streams.
- Automatic channel handling: mono or stereo input is processed correctly.
This tool works with headerless IMA ADPCM files.
When decoding, you must provide the frequency and the number of channels to ensure accurate reconstruction of the audio.
Download the latest version here:
To encode a 16-bit PCM WAV file into IMA ADPCM format, use the following command:
ImaAdpcmTool.exe <InputFile> <OutputFile>Example:
ImaAdpcmTool.exe "input.wav" "output.adpcm"For decoding an IMA ADPCM file back to a 16-bit PCM WAV file, use the command:
ImaAdpcmTool.exe Decode <InputFile> <OutputFile> <Frequency> <Channels><Frequency>= audio sample rate (e.g., 44100)<Channels>=1for mono,2for stereo
Example:
ImaAdpcmTool.exe Decode "input.adpcm" "output.wav" 44100 2