Skip to content

Instantly share code, notes, and snippets.

View douma's full-sized avatar

D douma

  • Germany
View GitHub Profile
@luizomf
luizomf / upscale_1080p_to_4k_using_ffmpeg.md
Last active May 5, 2024 14:40
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 \