Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List all supported Audio/Video encoders with FFmpeg - FFmpeg By Example #102

Open
eladg opened this issue Nov 23, 2024 · 0 comments
Open

Comments

@eladg
Copy link
Owner

eladg commented Nov 23, 2024

https://ffmpegbyexample.com/examples/edkhl1r6/list_all_supported_audio_video_encoders_with_ffmpeg/

The -encoders flag will print a list of supported audio/video and generally data generating encoders. You can use grep to filter out rows of text that does not fit the grep regular expression.

Encoders:
 V..... = Video
 A..... = Audio
 S..... = Subtitle
 .F.... = Frame-level multithreading
 ..S... = Slice-level multithreading
 ...X.. = Codec is experimental
 ....B. = Supports draw_horiz_band
 .....D = Supports direct rendering method 1

An example of video encoders (items on the list that starts with V)

 V..... libsvtav1            SVT-AV1 encoder
 V..... wmv1                 Windows Media Video 7
 V..... wmv2                 Windows Media Video 8

An example of audio encoders (items on the list that starts with A)

 A....D aac                  AAC (Advanced Audio Coding)
 A....D alac                 ALAC (Apple Lossless Audio Codec)
 A..... alac_at              alac (AudioToolbox) (codec alac)

An example of subtitle encoders (items on the list that starts with S)

 S..... ssa                  ASS (Advanced SubStation Alpha) subtitle (codec ass)
 S..... ass                  ASS (Advanced SubStation Alpha) subtitle
 S..... dvbsub               DVB subtitles (codec dvb_subtitle)
 S..... srt                  SubRip subtitle (codec subrip)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant