Created
September 25, 2018 05:49
-
-
Save toshke/183b5cab785d2cdf31dd67d5238b6ca7 to your computer and use it in GitHub Desktop.
convert mov to mp4 MacOS
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
#!/bin/bash | |
ffmpeg -i $1 -vcodec h264 -acodec aac -r 24 -crf 15 $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use as
./convert-video-for-youtube.sh inputfile.mov outfile.mp4