Scale video using FFMPEG
The following command will scale a video using ffmpeg and maintain its aspect ratio:
ffmpeg -i input.jpg -vf scale=320:-1 output_320.png
Documentation on scaling can be found at: https://trac.ffmpeg.org/wiki/Scaling
The following command will scale a video using ffmpeg and maintain its aspect ratio:
ffmpeg -i input.jpg -vf scale=320:-1 output_320.png
Documentation on scaling can be found at: https://trac.ffmpeg.org/wiki/Scaling