I've tried to find information about this but to no avail.
What audio formats and their file extensions are supported by FFMPEG?
Is there a command that can list them all?
I've tried to find information about this but to no avail.
What audio formats and their file extensions are supported by FFMPEG?
Is there a command that can list them all?
Unfortunately there is no list with extensions. However you can look up common extensions per muxer.
DEA
(D
ecoding supported, E
ncoding supported, A
udio codec)ffmpeg -hide_banner -codecs | grep DEA
Now you get a long list.
Take e.g. DEA.LS dts DCA (DTS Coherent Acoustics) (decoders: dca ) (encoders: dca )
dts
:ffmpeg -hide_banner -h muxer=dts
Result: Common extensions: dts.
(With other codecs you should also try demuxer=
)