I'm looking for something that can batch edit a bunch of videos. Let's say I have a folder of 50 videos and I only need the last two minutes of each video... Is there any software that can spit out 2 minute files of each video?
Batch editing video software?
Collapse
X
-
Tags: None
-
-
I use a program called Ultra Video Splitter that might do what you need. It will let you set it so that it cuts videos into clips of a length that you set. For you to do it in a batch you would have to have all the videos be the same length through.Comment
-
-
You posted, waited 8 hours, then bumped the topic - all without going to a search engine and looking for the software yourself?Comment
-
http://www.videocharge.com/Index.php
This will do it, at least from what I know you can put however many videos you want in a queue and then split them up that way.
I'm pretty sure you can set it to just the last portions exclusively in the videos.
Either way, you won't be disappointed with that software.
...going for the cumshots eh?Comment
-
Thanks for the suggestion. I'll check that out. I'm not going for the cumshots... Just editing videos from sponsors.http://www.videocharge.com/Index.php
This will do it, at least from what I know you can put however many videos you want in a queue and then split them up that way.
I'm pretty sure you can set it to just the last portions exclusively in the videos.
Either way, you won't be disappointed with that software.
...going for the cumshots eh?Comment
-
Sounds like it will also work well to cut out the cumshots to upload to tubes to entice the surfer to join your site and see the cum shot.
Comment
-
Comment
-
Comment
-
Yeah batch processing and rule based stuff in where the cli will save you a lot of time. To do ANYYHING on every file:
for vid in *.flv
do
dosomething $vid
done
So:
for vid in *.flv
do
ffmpeg -i $vid -vcodec copy -acodec copy -t 00:03:00 $vid.trimmed.flv
done
No special software needed - "for" loops over anything, doing anything to it. ffmpeg does anything to videos.Last edited by raymor; 04-13-2012, 04:14 PM.For historical display only. This information is not current:
support@bettercgi.com ICQ 7208627
Strongbox - The next generation in site security
Throttlebox - The next generation in bandwidth control
Clonebox - Backup and disaster recovery on steroidsComment


Comment