Hi All,
I have a problem for which there may be a simple solution and I cant see the wood for the Trees.
I have a straight avi file which lasts about 4 minutes. I have stripped out the audio so as to keep things simple.
I have also extracted the frames into bmp's
There are about 5000 frames but each one has no transitions.
I am trying [and have been for the last 4 weeks now] to find a way of partially overlapping some of the frames so that say I want to overlap frame 26 at 85% through frame 25 so frame 25 is merged with frame 26 until fram 26 is viewd on its own.
I'm using Virtualdub [latest version] which does most things very well.
Does anyone have any advice to achieve this effect without resorting to AviSynth
+ Reply to Thread
Results 1 to 9 of 9
-
MikeN
-
Originally Posted by mpack
I've tried various script builders in Avisynth but sadly with a myriad of resulting errors so in frustration I 'm trying to find an alternative.
However if Avisynth is a quick and easy fix can I add a script in say Notepad, rename the file .avs and run it from virtualdub?MikeN -
Originally Posted by keithnutCode:
mpeg2source("myvideo.d2v") V1=trim(0,500) V2=trim(501,1000) V3=trim(1001,1500) V4=trim(1501,0) Vout=dissolve(V1,V2,V3,V4,20)
You could also do all this in Adobe Premiere.ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
Yes, you can open the .avs in vdub
You can also do a similar effect with avidemux directly on the .avi with the built in fade filter (avidemux is a free visual editor/encoder, and behaves similar to vdub)
Using the "fade" filter, you can specify the start/end frames for each "fading" segment. You can fade in, fade out, or fade to black (eg. at the end of the clip)
Here is a small sample (1.6MB each); the "ironman.avi" is the "before" clip from the Iron Man Apple movie trailer. The "fade.avi" is the "after" clip and has 2 fade points
You have much more control in Premiere or Vegas, even avisynth, but this is just for a quick and easy free transition
Before
http://www.mediafire.com/?jww2gwzmfvm
After
http://www.mediafire.com/?xjn92ykxhzb -
Originally Posted by poisondeathray
Good Luck
MikeMikeN -
How the hell you did this by Avidemux? When it has fade in, fade out, but no any crossfade? Could you please copy
the **Filters** part of saved project, like this:
//** Filters **
app.video.addFilter("fade","startFade=30","endFade =60","inOut=0","toBlack=0");
app.video.addFilter("fade","startFade=60","endFade =90","inOut=1","toBlack=0");
Thanks -
Similar Threads
-
Avidemux: The beginning frame is not a key frame. Please move the A marker
By devilcoelhodog in forum EditingReplies: 13Last Post: 8th Jun 2015, 12:38 -
Frame-By-Frame Restored James Bond Films Released
By Soopafresh in forum RestorationReplies: 9Last Post: 27th Apr 2012, 14:09 -
How do I debug/extract i-frame p-frame and b-frame?
By jwbrasil2 in forum ProgrammingReplies: 0Last Post: 20th Nov 2011, 12:24 -
Play an MTS file frame by frame, displaying timecode or frame number
By SeánB in forum Software PlayingReplies: 5Last Post: 5th Oct 2010, 16:26 -
Advancing/Rewinding Clip Frame by Frame on Windows Movie Maker (Vista)
By ione in forum EditingReplies: 20Last Post: 9th Sep 2008, 22:53