User Tools

Site Tools


ffmpeg:video_resize

This is an old revision of the document!


ffmpeg - Video resize

-vf scale=width:height 

Upscaling Video to 1080p

ffmpeg -i input.mp4 -vf scale=1920x1080:flags=lanczos -c:v libx264 -preset slow -crf 21 output_compress_1080p.mp4

NOTE: Lanczos resampling involves a sinc filter as well.

  • It is more computationally expensive but usually described as very high quality and can be used for up- and downsampling.

Downscaling Video

ffmpeg -i input.mp4 -vf scale=640x480:flags=lanczos -c:v libx264 -preset slow -crf 21 output_compress_480p.mp4

References

ffmpeg/video_resize.1714318512.txt.gz ยท Last modified: 2024/04/28 15:35 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki