I make videos that are typically 10 to 20 minutes long. For each of these videos, I would like to automatically generate a short preview trailer which is around 60 seconds long. The 60 second preview trailer should be randomly sampled footage from the beginning to the end of the video. Of course I can do this manually in a video editing program, but I would like a program to automatically do this, as it would save me a lot of time.
Does anyone know any good tools for this job?
+ Reply to Thread
Results 1 to 5 of 5
-
-
AviSynth's SelectRangeEvery?
For example:
SelectRangeEvery(2000, 200)
says to select 200 frames spread every 2000 frames apart. At 25fps that means you use 8 seconds of footage every one minute 20 seconds. It also means reencoding but so does your NLE method. -
Hi,
automatization of this process, you get very strange looking preview. Because of cut points can be just say (4-12) frames long (at 25fps 8-frames is 0,3125 sec). So you should look for gop start, its duration etc. But it will not help either in some special situation. Best way is to do it manually. Or if you do it for your private use and quality of preview doesnt matter that you encounter situation where you finish with cut ->6 frames from different shot, then another cut.... (weird looking video preview) so manono suggesting is best or there can be way with FFMPEG also.
Bernix -
-
The equivalent cross platform solution (win/mac/linux) for manono's suggestion (200 frames, every 2000) would be vapoursynth
Code:clip = core.std.SelectEvery(clip, cycle = 2000, offsets = range(200))
Similar Threads
-
VSDC video editor shows image on preview, but when I export the video
By elisape in forum Newbie / General discussionsReplies: 2Last Post: 20th Oct 2016, 03:51 -
Music Video Trailer
By akakiami in forum EditingReplies: 0Last Post: 28th Jun 2016, 14:19 -
Sound Recording Software with Video Preview and SUBTITLES
By sdancer75 in forum AudioReplies: 8Last Post: 22nd Jan 2015, 07:45 -
Indie video game needs trailer editor to make game trailer
By andrnick7 in forum EditingReplies: 1Last Post: 27th Feb 2014, 02:33 -
Creating Menus Using DVD Menu Making Software
By Teac23 in forum Authoring (DVD)Replies: 4Last Post: 27th Nov 2013, 14:59