Hi,
I need to know how to easily overlap video frames in to 1 frame for a movie! I'm a making a movie with my friend
Thanks
Joe
+ Reply to Thread
Results 1 to 4 of 4
-
-
I'm not sure I understand either. You want to take a video clip, and overlay it on the same video clip, but just shifted over by one frame, so the result looks kind of blended/blurry? Something like this, where the letters stand for frames laid on top of each other:
ABCDEFG
BCDEFGH
Anyway, if you want something similar, then I think that AviSynth's Overlay command can help. One script will do what I just described:
A=MPEG2Source("C:\Path\To\Video.d2v")
B=MPEG2Source("C:\Path\To\Video.d2v").Trim(1,0)
Overlay(A,B,Opacity=0.5)
I was just testing with a DVD source. You can also use an AVI source:
http://www.avisynth.org.ru/docs/english/corefilters/overlay.htm
Similar Threads
-
decoding mpeg video into frames say I,P,B frames
By abeer in forum ProgrammingReplies: 44Last Post: 6th Oct 2012, 08:24 -
Help!! Joining vidoes so thaey overlap
By chetan121212 in forum EditingReplies: 1Last Post: 26th Sep 2011, 22:31 -
Symptom of picture overlap in motion.
By wisitch in forum Video ConversionReplies: 6Last Post: 8th May 2010, 20:06 -
joining two avi parts that overlap?
By nok32 in forum Newbie / General discussionsReplies: 6Last Post: 16th Nov 2008, 03:40 -
What software would you use to overlap video?
By D.A.R.J.R. in forum EditingReplies: 2Last Post: 18th Apr 2008, 00:20