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 reduce background audio noise using arnndn (neural network models)
- ffmpeg output to stdout
- How to delay (sync with video) audio channel in video file
- How to list supported pixel formats
- Create video from a single image (loop image in video)
- How to reduce background audio noise using afftdn
- How to add multi-line text to video using drawtext filter
- List all supported codecs
- Concatenate (combine) several audio tracks
See more codes...