Skip to content

Instantly share code, notes, and snippets.

@rudyhuynh
Created March 18, 2020 13:53
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save rudyhuynh/21ffd4926fd51d9d9b2d0d5e05b968fc to your computer and use it in GitHub Desktop.
Save rudyhuynh/21ffd4926fd51d9d9b2d0d5e05b968fc to your computer and use it in GitHub Desktop.
Convert MOV to MP4
brew install ffmpeg
ffmpeg -i my-video.mov -vcodec h264 -acodec mp2 my-video.mp4
@tranngocphuong89
Copy link

don't use above command, that command generate .mp4 have no sound.
Let use below command, mp4 have sound

ffmpeg -i my-video.mov -vcodec h264 -acodec aac my-video.mp4

(-acodec value is aac )

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