View Single Post
Old 04-13-2012, 05:12 PM  
raymor
Confirmed User
 
Join Date: Oct 2002
Posts: 3,745
Quote:
Originally Posted by ezrajulesjordanvideo View Post
ffmpeg would be your best option. Or you could do it in adobe media encoder.
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 at 05:14 PM..
raymor is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote