View Single Post
Old 21st June 2019, 21:59   #16983  |  Link
byteshare
ByteShare
 
byteshare's Avatar
 
Join Date: Sep 2014
Location: On the Internet
Posts: 560
Quote:
Originally Posted by Atak_Snajpera View Post
Try this

Code:
#Denoise
noisyvideo=video
super=MSuper(video,pel=2)
fv1=MAnalyse(super,isb=false,delta=1,overlap=4)
bv1=MAnalyse(super,isb=true,delta=1,overlap=4)
fv2=MAnalyse(super,isb=false,delta=2,overlap=4)
bv2=MAnalyse(super,isb=true,delta=2,overlap=4)
video=MDegrain2(video,super,bv1,fv1,bv2,fv2,thSAD=400)
video=SeeSaw(noisyvideo,video)
Thank you so much. I spent a long time trying to figure that out.
I had the order wrong for RipBot.
Am I wrong in thinking that for the above "Video=" after another "Video=" has the logic of using the last "Video="
output as an input to the next "Video=" when you define "Video" as a source in a filter ie Filter(video)
So "video=MDegrain2(video,super,bv1,fv1,bv2,fv2,thSAD=400)" is getting sent to the next line that uses "Video" here:
"Video=SeeSaw(noisyvideo,video)"
byteshare is offline   Reply With Quote