Created
June 15, 2018 20:43
-
-
Save tonylambiris/b6a6ffbeb0d0eba2d1ee382f5665870d to your computer and use it in GitHub Desktop.
Covert mkv to mp4 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
| #!/bin/bash | |
| # copy video stream instead of re-encoding | |
| ffmpeg -i input.mkv -acodec mp3 -strict -2 -vcodec copy output.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment