Normally I do this:
However only part of my video has screen shake so I only want the screen shake fix applied to that part of the video. I tried the following methods but I get an error message. Trim says "I don't know what "mdata" means". ReplaceFramesSimple says syntax error.Code:mdata = DePanEstimate(dxmax=0) DePanStabilize(last, data=mdata, initzoom=1.05, dxmax=0, dymax=4)
Code:filtered=mdata = DePanEstimate(dxmax=0) DePanStabilize(last, data=mdata, initzoom=1.05, dxmax=0, dymax=4) ReplaceFramesSimple(last,filtered,Mappings="[0 14001]") trim(0, 14001). mdata = DePanEstimate(dxmax=0) DePanStabilize(last, data=mdata, initzoom=1.05, dxmax=0, dymax=4) ++trim(14002, 76123)
+ Reply to Thread
Results 1 to 3 of 3
-
-
This is where you habit of putting multiple functions on a single line is screwing you.
Code:mdata=DePanEstimate(dxmax=0) filtered=DePanStabilize(last, data=mdata, initzoom=1.05, dxmax=0, dymax=4) ReplaceFramesSimple(last,filtered,Mappings="[0 14001]")
Last edited by jagabo; 23rd Apr 2013 at 07:53.
Similar Threads
-
How to Fix Horizontal Jitter with AviSynth?
By VideoFanatic in forum RestorationReplies: 2Last Post: 26th Jan 2014, 22:52 -
How to fix speedup with AviSynth?
By VideoFanatic in forum RestorationReplies: 66Last Post: 29th Aug 2013, 12:41 -
How to fix ghosting / tracing with Avisynth?
By VideoFanatic in forum RestorationReplies: 2Last Post: 18th Mar 2013, 18:25 -
How to Fix Patchy Colour with Avisynth?
By VideoFanatic in forum RestorationReplies: 59Last Post: 14th Feb 2012, 10:20 -
How to get DePan for AviSynth to fix Screen Shake?
By VideoFanatic in forum RestorationReplies: 45Last Post: 30th Nov 2011, 07:49