Avidemux Cannot Use That File As Audio Track _verified_ [ Official ]

This is the most reliable solution. Convert your audio file into a raw, supported format using a tool like or Audacity .

This error typically appears when you try to load an external audio file (like an MP3, M4A, or AAC) to replace or add a new audio track to a video. Instead of seamlessly integrating the sound, Avidemux rejects the file entirely.

ffmpeg -i input.m4a -c copy output.aac

: Certain audio editors or DJ software (such as Traktor) inject proprietary metadata tags at the very beginning of standard MP3 files. Avidemux misinterprets these headers as corrupt frames and completely rejects the file. avidemux cannot use that file as audio track

On the left-hand sidebar, change "Audio Output" from to MP3 (lame) or AAC (lav) .

Let’s break down the most common reasons Avidemux rejects your external audio file.

ffmpeg -i input.m4a -acodec pcm_s16le -ar 48000 -ac 2 output.wav This is the most reliable solution

The error occurs when you try to replace or add an external audio track to a video, but Avidemux rejects the audio file because it is multiplexed inside a container (like M4A, MP4, or OGG) rather than being a raw, elementary audio stream . Avidemux lacks the internal demuxers required to unpack containerized audio streams when they are loaded as external, secondary tracks. To fix this issue, you must strip away the container to provide a raw stream or convert the audio into a universally supported uncompressed format like a 16-bit PCM WAV file .

Once you have a compatible file, follow these steps to add it:

Avidemux works best with:

| Possible Cause | Explanation | |----------------|-------------| | | Avidemux expects PCM (uncompressed) or specific compressed formats (MP2, AC3, AAC). Some MP3 or AAC files with exotic encoding settings may be rejected. | | Sample rate mismatch | Avidemux internally works with certain sample rates (e.g., 44.1 kHz, 48 kHz). Rare rates (8 kHz, 96 kHz) may cause failure. | | File structure corruption or non-standard headers | Not all WAV or MP3 files strictly follow standard headers (e.g., WAV with extra chunks). | | Multi-channel layout not supported | Avidemux has limited support for 5.1/7.1 channels when adding external audio; stereo/mono is safest. | | Container-wrapped audio | Using a video file (e.g., MKV with audio) as the “audio track” will fail unless the internal stream is truly raw-audio compatible. | | File permissions or path issues | Non-ASCII characters in path, network drive with slow access, or read-only attribute. |

The error message occurs because the software only supports raw audio streams (such as raw MP3 or ADTS-encapsulated AAC ) when multiplexing external audio tracks. It cannot invoke demuxers for external tracks, meaning it will reject audio files wrapped in media containers like .m4a , .mp4 , or .ogg .