Skip to content

Instantly share code, notes, and snippets.

@toshke
Created September 25, 2018 05:49
Show Gist options
  • Save toshke/183b5cab785d2cdf31dd67d5238b6ca7 to your computer and use it in GitHub Desktop.
Save toshke/183b5cab785d2cdf31dd67d5238b6ca7 to your computer and use it in GitHub Desktop.
convert mov to mp4 MacOS
#!/bin/bash
ffmpeg -i $1 -vcodec h264 -acodec aac -r 24 -crf 15 $2
@toshke
Copy link
Author

toshke commented Mar 16, 2020

Use as ./convert-video-for-youtube.sh inputfile.mov outfile.mp4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment