How to easily upscale a 1080p video to 4k resolution using FFmpeg and a one-line command.
The speed of the video upscale will depend on the video length, bitrate, your CPU and what settings you use for the upscale process.
Using a slow preset will give good compression and a CRF of 19 will keep most of the original video quality.
Lanczos is a common scale algorithm to use, avoiding a blocky looking video after the upscale.
ffmpeg -i input.mp4 -vf scale=3840x2560:flags=lanczos -c:v libx264 -preset slow -crf 19 output.mp4
To achieve a faster upscale use a fast preset like veryfast or superfast however these will give a poorer compression but will complete the upscaling faster
ffmpeg -i input.mp4 -vf scale=3840x2560:flags=lanczos -c:v libx264 -preset veryfast -crf 25 output.mp4
Using a CRF of 25 will also lower the output quality slightly (less bitrate = less size).
You will have to find the perfect preset for how much time you want to spend upscaling and the output quality.
This is all in line with video encoding concepts, slower encoding means more quality is kept and the compression is superior. You cannot simply speed up the process or take shortcuts.
A drained and empty Kennington reservoir images from a drone in early July 2024. The…
Merrimu Reservoir from drone. Click images to view larger.
Using FTP and PHP to get an array of file details such as size and…
Creating and using Laravel form requests to create cleaner code, separation and reusability for your…
Improving the default Laravel login and register views in such a simple manner but making…
Laravel validation for checking if a field value exists in the database. The validation rule…