Skip to content

Instantly share code, notes, and snippets.

@luizomf
luizomf / upscale_1080p_to_4k_using_ffmpeg.md
Last active July 5, 2024 17:47
Upscale 1080p to 4k using ffmpeg

Upscale 1080p to 4k using ffmpeg

Just use the command below:

ffmpeg -i INPUT_FILE \
  -vf scale=3840x2160:flags=lanczos \
  -c:v libx264 \
  -crf 13 \
 -c:a aac -b:a 512k \