Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

dec_aac_adts_pull

Decode AAC file in Audio Data Transport Stream (ADTS) format using Transcoder.Pull and save output to WAV file.

Command Line

dec_aac_adts_pull --input <aac file> --output <wav file>

Examples

List options:

./bin/net10.0/dec_aac_adts_pull --help
dec_aac_adts_pull 1.0.0.0
Copyright (C) 2023 Primo Software

  -i, --input     input AAC file

  -o, --output    output WAV file

  --help          Display this help screen.

  --version       Display version information.

Decode the input file ./assets/aud/Hydrate-Kenny_Beltrey.adts.aac into output file ./output/dec_aac_adts_pull/Hydrate-Kenny_Beltrey.wav:

# Linux and macOS 
mkdir -p ./output/dec_aac_adts_pull

./bin/net10.0/dec_aac_adts_pull \
    --input ./assets/aud/Hydrate-Kenny_Beltrey.adts.aac \
    --output ./output/dec_aac_adts_pull/Hydrate-Kenny_Beltrey.wav
# Windows
mkdir -Force -Path ./output/dec_aac_adts_pull

./bin/net10.0/dec_aac_adts_pull `
    --input ./assets/aud/Hydrate-Kenny_Beltrey.adts.aac `
    --output ./output/dec_aac_adts_pull/Hydrate-Kenny_Beltrey.wav