I need a list of codecs and formats supported by FFmpeg. Where can I find it?
相关问题
- Countdown to the end of the HTML5 video
- Python function to read video and convert to frame
- Improving accuracy of Google Cloud Speech API
- Thumbnails from the Vimeo website harder than YouT
- Video Format that Works on Mobile Phones
相关文章
- Handling ffmpeg library interface change when upgr
- How to use a framework build of Python with Anacon
- How to create a MediaClip from RenderTargetBitmap
- Safari blocks play() on video despite being called
- Why MPMoviePlayerController fullscreen button icon
- c++ mp3 library [closed]
- Passing a native fd int to FFMPEG from openable UR
- FFmpeg - What does non monotonically increasing dt
should give you all the info about the codecs available.
You will see some letters next to the codecs:
The formats and codecs supported by your build of
ffmpeg
can vary due the version, how it was compiled, and if any external libraries, such as libx264, were supported during compilation.Formats (muxers and demuxers):
List all formats:
Display options specific to, and information about, a particular muxer:
Display options specific to, and information about, a particular demuxer:
Codecs (encoders and decoders):
List all codecs:
List all encoders:
List all decoders:
Display options specific to, and information about, a particular encoder:
Display options specific to, and information about, a particular decoder:
Reading the results
There is a key near the top of the output that describes each letter that precedes the name of the format, encoder, decoder, or codec:
In this example
V.S...
indicates that the encodermpeg4
is aV
ideo encoder and supportsS
lice-level multithreading.Also see
What is a codec and how does it differ from a format?
You can see the list of supported codecs in the official documentation:
Supported video codecs
Supported audio codecs
Codecs proper:
Formats: