Created
April 30, 2019 06:37
-
-
Save deepakpk009/5ac411fce3b1fddb72cc193ef5c9c0ec to your computer and use it in GitHub Desktop.
convert mov to mp4 and remove audio using ffmpeg
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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using only one command:
ffmpeg -i input.mov -vcodec h264 -acodec mp2 -an output.mp4