AudioUtils
Troubleshooting

Fix 'Unsupported Audio Format' Errors

An 'unsupported format' error usually means either the container, the codec, or both are not recognized by the device or app. Rather than randomly trying different formats, a systematic diagnostic approach gets you to the right conversion the first time.

Step 1: Identify the Device or App Rejecting the File

The fix depends entirely on what is refusing the file. Car stereos most commonly reject OGG, FLAC, and OPUS — convert to MP3. iPhones and iOS apps reject OGG Vorbis natively — convert to MP3 or AAC. Windows Media Player rejects OGG and OPUS — convert to MP3 or WMA. Smart TVs vary widely but usually support MP3 and AAC in MP4; FLAC support is common after 2016 models. Podcast apps require MP3 or M4A. Game engines often require WAV or OGG at specific sample rates.

Step 2: Try the Universal Format First

MP3 at 128-192 kbps is the universal audio format — if a device plays audio at all, it almost certainly plays MP3. If you are troubleshooting an unknown device, start with MP3. If MP3 works, the original format was the problem. If MP3 also fails, the device has a hardware or software fault unrelated to the format.

Step 3: Check Sample Rate Compatibility

Some devices only support specific sample rates. Car stereos and old MP3 players sometimes only support 44.1 kHz. Some professional audio equipment only accepts 48 kHz or 96 kHz. Check the file's sample rate using Audacity (check the track info below the waveform) or MediaInfo (a free tool). If the sample rate is unusual (e.g., 22,050 Hz or 32,000 Hz), convert to WAV at 44.1 kHz and then to the target format.

Step 4: Check the Codec vs Container

A file with the extension .mp4 might contain audio encoded with a codec the device cannot decode (Opus, FLAC, or an unusual AAC profile). Renaming the file is not enough — you need to actually re-encode. Use the appropriate converter: MP4 to MP3 extracts and re-encodes the audio as MP3. MP4 to WAV extracts as uncompressed PCM. If you are unsure what codec is inside the file, convert to WAV first — WAV uses PCM which every device that handles audio understands.

Step 5: Verify the Fix Before Committing

After converting, test the output file on the target device before deleting the original. Many audio players have file size or duration limits in addition to format requirements — a 2 GB WAV file may fail on a FAT32-formatted USB drive even if the format is correct (FAT32 has a 4 GB file size limit but some car stereos only handle up to 1 GB per file). Convert and test a sample before processing a large batch.