Gargalash
30th December 2011, 20:34
Hello,
I am not knowledgeable of mvtools enough to understand how it works, but by looking around a while ago, I found these lines that do a very good job at changing framerates:
super=MSuper(pel=2, hpad=0, vpad=0)
backward_1=MAnalyse(super, chroma=false, isb=true, blksize=16, blksizev=16, searchparam=2, plevel=0, search=3, badrange=(-24))
forward_1=MAnalyse(super, chroma=false, isb=false, blksize=16, blksizev=16, searchparam=2, plevel=0, search=3, badrange=(-24))
backward_2 = MRecalculate(super, chroma=false, backward_1, blksize=8, blksizev=8, searchparam=1, search=3)
forward_2 = MRecalculate(super, chroma=false, forward_1, blksize=8, blksizev=8, searchparam=1, search=3)
backward_3 = MRecalculate(super, chroma=false, backward_2, blksize=4, blksizev=4, searchparam=0, search=3)
forward_3 = MRecalculate(super, chroma=false, forward_2, blksize=4, blksizev=4, searchparam=0, search=3)
MBlockFps(super, backward_3, forward_3, num=50, den=1, mode=0)
The thing is that my lack of knowledge stops me from knowing if I can push the vector search further or change other parameters to optimize the results a little more.
Real time processing is not an issue and I am looking for more accurate results that processing speed.
Thanks for your help!
I am not knowledgeable of mvtools enough to understand how it works, but by looking around a while ago, I found these lines that do a very good job at changing framerates:
super=MSuper(pel=2, hpad=0, vpad=0)
backward_1=MAnalyse(super, chroma=false, isb=true, blksize=16, blksizev=16, searchparam=2, plevel=0, search=3, badrange=(-24))
forward_1=MAnalyse(super, chroma=false, isb=false, blksize=16, blksizev=16, searchparam=2, plevel=0, search=3, badrange=(-24))
backward_2 = MRecalculate(super, chroma=false, backward_1, blksize=8, blksizev=8, searchparam=1, search=3)
forward_2 = MRecalculate(super, chroma=false, forward_1, blksize=8, blksizev=8, searchparam=1, search=3)
backward_3 = MRecalculate(super, chroma=false, backward_2, blksize=4, blksizev=4, searchparam=0, search=3)
forward_3 = MRecalculate(super, chroma=false, forward_2, blksize=4, blksizev=4, searchparam=0, search=3)
MBlockFps(super, backward_3, forward_3, num=50, den=1, mode=0)
The thing is that my lack of knowledge stops me from knowing if I can push the vector search further or change other parameters to optimize the results a little more.
Real time processing is not an issue and I am looking for more accurate results that processing speed.
Thanks for your help!