Skip to content

Instantly share code, notes, and snippets.

@deepakpk009
Created April 30, 2019 06:37
Show Gist options
  • Save deepakpk009/5ac411fce3b1fddb72cc193ef5c9c0ec to your computer and use it in GitHub Desktop.
Save deepakpk009/5ac411fce3b1fddb72cc193ef5c9c0ec to your computer and use it in GitHub Desktop.
convert mov to mp4 and remove audio using ffmpeg
Convert mov to mp4:
ffmpeg -i input.mov -vcodec h264 -acodec aac -strict -2 output.mp4
Remove audio:
ffmpeg -i input.mp4 -an -vcodec copy output.mp4
@xcarpentier
Copy link

I'm using only one command:

ffmpeg -i input.mov -vcodec h264 -acodec mp2 -an output.mp4

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