I want to find supported codec for specific file like(.avi,.mp4, .mov) for enumeration and encoding. I Was enable to find list of codec support for which container. Using ffmpeg
Asked
Active
Viewed 122 times
1 Answers
0
That information isn't easily available. For each muxer (container) you have to examine the source code. The best way to is to locate the exception handling routine which will throw an error when a codec is not supported and observe and note which cases are allowed. Also, see the stream tagging routines and and take note which tags are supported.

Gyan
- 85,394
- 9
- 169
- 201