4 lines
258 B
Bash
Executable file
4 lines
258 B
Bash
Executable file
# This downscales the video to a crisp 160:42 (even tho its supposed to be 160:43
|
|
# Note that it's set to crop the video to be the right aspect ratio, too.
|
|
ffmpeg -i original.mp4 -vf "scale=160:43:force_original_aspect_ratio=increase,crop=160:43" shrunk.mp4
|