Hi guys , I have like 100 clips in MP4 and I'd like to cut from all of them first 30 seconds or so and I know that there are a lot of tools out there but all of them that I've tried are for do it 1 by 1 and what I'd like to do is to do it in "batch mode " to do something like config files that I want and press "enter". Do you know any tool that can do that? Would be need to recode the videos?
Thanks for your help
+ Reply to Thread
Results 1 to 5 of 5
-
Last edited by darkyei; 10th Jul 2013 at 12:00. Reason: add more details
-
You can use ffmpeg with a batch file.
ffmpeg cut example:
http://stackoverflow.com/questions/15629490/how-to-cut-part-of-mp4-video-using-ffmpeg-...losing-quality
and then you make a batch file for it
https://forum.videohelp.com/threads/356314-How-to-batch-convert-multiplex-any-files-with-ffmpeg
I'm not sure you will find any easier method with a gui/frontend. -
Thanks for answer , what I've tried is this :
for %%a in ("*.mp4") do ffmpeg -i "%%a" -t 21 -acodec copy -vcodec copy "newfiles\%%~na.mp4"
Thanks again!
Edit: Fixed!
for %%a in ("*.mp4") do ffmpeg -i "%%a" -ss 20 -acodec copy -vcodec copy "newfiles\%%~na.mp4"Last edited by darkyei; 11th Jul 2013 at 10:39.
-
Similar Threads
-
Batch Splitting Videos?
By serpentxx in forum EditingReplies: 0Last Post: 6th Feb 2013, 07:46 -
Batch Convert videos
By hbelouf in forum Video ConversionReplies: 0Last Post: 30th Jun 2011, 22:17 -
Batch download of YouTube videos
By JN in forum Video Streaming DownloadingReplies: 4Last Post: 24th Apr 2011, 10:49 -
Need to batch-convert videos to MP4 using same bitrate as source videos
By BLboy in forum Video ConversionReplies: 7Last Post: 26th Jan 2011, 21:25 -
automatic or batch processing in Cut Assistant: possible?
By cbarduck in forum EditingReplies: 0Last Post: 9th Feb 2009, 06:11