List all supported Audio/Video encoders with FFmpeg

0
0
No Preview.

If you feel like this example could be improved, you may edit this example here.

# get a list of audio/video/subtitle 'encoders'
ffmpeg -hide_banner -encoders

# grep only audio encoders
ffmpeg -hide_banner -encoders | grep "^ A"

# grep only video encoders
ffmpeg -hide_banner -encoders | grep "^ V"