ffmpegHow to list H.264 presets and tunes
ffmpeg -hide_banner -f lavfi -i nullsrc -c:v libx264 -preset help -f mp4 - 2>&1 | grep Possible
ctrl + c
Usage example
ffmpeg -hide_banner -f lavfi -i nullsrc -c:v libx264 -preset help -f mp4 - 2>&1 | grep Possible
output
[libx264 @ 0x561c3c9d3ec0] Possible presets: ultrafast superfast veryfast faster fast medium slow slower veryslow placebo
[libx264 @ 0x561c3c9d3ec0] Possible tunes: film animation grain stillimage psnr ssim fastdecode zerolatency
Related
More of Ffmpeg
- How to convert AV1 to H.264
- How to add multi-line text to video using drawtext filter
- How to reduce background audio noise using afftdn
- How to reduce background audio noise using arnndn (neural network models)
- How to batch convert WAV to MP3
- How to get current ffmpeg version
- List all supported codecs
- How to use filter_complex to apply filters to videos
- How to download m3u8 steam and save to mp4
- How to set audio quality for MP3
See more codes...