View Single Post
Old 30th December 2011, 14:24   #17  |  Link
PALpilot
Registered User
 
Join Date: Dec 2007
Posts: 17
I use just this at 720p

v=FFVideoSource("MVI_7980.MOV").converttorgb32().spline36resize(1280,720)
a=selecteven(v)
b=selectodd(v)
mymask=greyscale(overlay(a,b)).levels(50,1,256,0,256,true)
c=overlay(b,a,mask=mymask,opacity=0.5,greymask=true,mode="blend",pc_range=true)

return c
#fuse(a,b,mymask.invert())

=====================
return c = for blend
fuse(a,b,mymask.invert()) is for fusing
switch them by add or remove the # (comment symbol)
Your video has to start with the light frame. Sometimes I need a trim to achieve this.
like v=FFVideoSource("MVI_7980.MOV").trim(0,1).converttorgb32().spline36resize(1280,720)
PALpilot is offline   Reply With Quote