Created
March 24, 2013 02:53
-
-
Save Lewuathe/5230277 to your computer and use it in GitHub Desktop.
concat iPhone movie with ffmpeg ref: http://qiita.com/items/9bc7d4b0754bb0e39e42
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 input1.MOV input1.mpg | |
| $ ffmpeg -i input2.MOV input2.mpg |
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 "concat:input1.mpg|input2.mpg" output.mpg |
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 output.mpg output.MOV |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment