Skip to content

Instantly share code, notes, and snippets.

View wendellpalazzo's full-sized avatar

Wendell Palazzo wendellpalazzo

View GitHub Profile
@luizomf
luizomf / upscale_1080p_to_4k_using_ffmpeg.md
Last active May 24, 2025 11:15
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 \