Created
January 23, 2021 20:30
-
-
Save leptoquark1/e53e2c67d7050194ce2e817a49b5c2d5 to your computer and use it in GitHub Desktop.
ffmpeg commands to convert videos fileformat with the goal to maintain the quality but to increase the compression of the source 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
| # .mov to .mp4 ^4k | |
| ffmpeg -i videoName.mov -vcodec h264 -acodec mp3 videoName.mp4 | |
| # .mov to .webm | |
| ffmpeg -i videoName.mov -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis videoName.webm | |
| ## TO BE CONTINUED |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment