-
http://superuser.com/questions/138331/using-ffmpeg-to-cut-up-video
ffmpeg.exe -i input.wmv -ss 00:01:27 -c copy -t 00:43:35 output.WMV
ffmpeg.exe -i input.wmv -ss 00:01:27 -t 00:43:35 output.MP4
-
http://stackoverflow.com/questions/7333232/concatenate-two-mp4-files-using-ffmpeg
-
concat demuxer
ffmpeg.exe -f concat -i input.txt -c copy out.MTS file '00001.MTS' file '00002.MTS'
-
concat protocol
# MPG/MPEG = MPEG-1 files # VOB = MPEG-2 PS (Program Stream) ffmpeg.exe -i "concat:1.VOB|2.VOB" -codec copy out.VOB
-
Last active
December 8, 2017 17:10
-
-
Save paveljurca/f3986b3bd3b1f4a21738a37c868c17a9 to your computer and use it in GitHub Desktop.
FFmpeg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment