I watch lots of TV shows and some times, i need to capture specific scenes so i can play them back whenever. I know of course that this can easily be done in vdub, where you set start and end frames and then save the file direct stream copy. But when dealing with batch files and lots of scenes, this just doesnt help.
Supposing i know start and end times (or frames) and the spcific video's filename. How can i create a batchfile so that theis gets done with one click?
+ Reply to Thread
Results 1 to 4 of 4
-
-
Maybe with ffmpeg and .bat file that you put in the same file as the video files
Example:
Code:ffmpeg -i input.avi -acodec copy -vcodec copy -ss 00:00:10:00 -t 00:00:30:00 output.avi ffmpeg -i input2.avi -acodec copy -vcodec copy -ss 00:00:15:00 -t 00:00:30:00 output2.avi
-t = duration
If you are cutting exact same in all you could use a for loop. -
Instead of duration could i set end point? Also is it also possible for this to be done in frames as well?
And can i use this script for mkv h264 files?
Similar Threads
-
Possible to convert ONLY audio part of WMV, but not the video part?
By tigerb in forum Newbie / General discussionsReplies: 2Last Post: 27th Jun 2011, 18:57 -
TMPGEnc cannot open the video part of the file, only the audio part can.
By dzsoul in forum Authoring (DVD)Replies: 15Last Post: 3rd Apr 2009, 08:36 -
Extract part of picture while keeping right aspect ratio
By cd090580 in forum Video ConversionReplies: 12Last Post: 6th Oct 2008, 06:04 -
How to use VLC to extract a certain part of a DVD?
By berane in forum Newbie / General discussionsReplies: 4Last Post: 3rd Oct 2008, 16:36 -
Software to extract only PART of a DVD
By Faustus in forum DVD RippingReplies: 3Last Post: 24th Nov 2007, 04:19