Skip to content

Instantly share code, notes, and snippets.

View SantiiRepair's full-sized avatar
🙆‍♂️
damn i'm fixing it

Santiago Ramirez SantiiRepair

🙆‍♂️
damn i'm fixing it
View GitHub Profile

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 \