Categories: Development

Upscale 1080p video to 4k with FFmpeg

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.

The FFmpeg command

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

Faster?

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.

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

2 years ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

2 years ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

3 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

3 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

3 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

3 years ago