FFMPEG allows you to easily convert and resize your video files.
- FFMPEG: https://www.ffmpeg.org
Install FFMPEG
sudo apt-get install ffmpeg
Convert Video to Another Format
ffmpeg -i inputVideo.mp4 outputVideo.mov
ffmpeg -i inputVideo.mp4 outputAudio.mp3
Change Video Size – Manually Input Width and Height
ffmpeg -i inputVideo.mp4 -vf scale=352:240 outputVideo.mp4
Change Video Size – Keep Aspect Ratio
ffmpeg -i inputVideo.mp4 -vf scale=352:-1 outputVideo.mp4
Be the first to comment