Created
April 4, 2022 03:23
-
-
Save mreinstein/b238fa51bd1b65cd9d89a20faaec81da to your computer and use it in GitHub Desktop.
ffmpeg - resize video
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# resize | |
ffmpeg -i input.mp4 -vf scale=1920:1080 output.mp4 | |
# resize with high quality | |
ffmpeg -i input.mp4 -vf scale=1920:1080 -preset slow -crf 18 output.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment