Created
April 19, 2017 19:31
-
-
Save vparihar01/dbeeb027537559051f92a2f27312701c to your computer and use it in GitHub Desktop.
simply convert video files (i.e.: MKV to MP4)?
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
ffmpeg -i LostInTranslation.mkv -vcodec copy -acodec copy LostInTranslation.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ffmpeg -i input.mkv -c copy -map 0 output.mp4
copy all streams.