I don’t cut videos too often, but sometime I still have to do some video cutting works like simply merging my recorded gaming videos.
As a developer, if there is something that can be done from commandline, I wouldn’t bother to find some other GUI app.
FFmpeg is obviously the powerful tool to fulfill my requirements.
CUT VIDEO
1 | ffmpeg -ss 00:00:30.0 -i input.wmv -c copy -t 00:00:10.0 output.wmv |
See Seeking for more details.
MERGE VIDEOS
1 | # Create File List |
See Concatenate for more info.