I'm using this avisynth script in ffdshow:
SetMTMode(3,4)
multinum=2
multiden=1
mode=1
spar=0
blkh=32
blkv=32
sch=5
lvl=4
ffdShow_source()
SetMTMode(2)
super=MSuper(pel=1)
backward_vec1=MAnalyse(super, isb=true, blksize=blkh, blksizev=blkv, search=sch, searchparam=spar, levels=lvl)
forward_vec1=MAnalyse(super, isb=false, blksize=blkh, blksizev=blkv, search=sch, searchparam=spar, levels=lvl)
MFlowFps(super, backward_vec1, forward_vec1, num=FramerateNumerator(last)*multinum, den=FramerateDenominator(last)*multiden, mask=mode, ml=255)
distributor()
I'm using it with coreavc 2.0 with cuda enabled.
My hardware specs:
q6600 @ 2.4 GHz
8 GB RAM
8600 GTS 256 MB RAM
I also set ffdshow to resize the video before it gets to the avisynth script to 480p resolutions if it's above that. But I made sure to keep the aspect ratio.
The problem I'm having is the audio doesn't seem to be in sync with the video sometimes. Is there anything I can do to improve the performance? My cpu seems to be going at 70% on average with this on. I thought resizing it in ffdshow first before it is sent through the avisynth script would help.
SetMTMode(3,4)
multinum=2
multiden=1
mode=1
spar=0
blkh=32
blkv=32
sch=5
lvl=4
ffdShow_source()
SetMTMode(2)
super=MSuper(pel=1)
backward_vec1=MAnalyse(super, isb=true, blksize=blkh, blksizev=blkv, search=sch, searchparam=spar, levels=lvl)
forward_vec1=MAnalyse(super, isb=false, blksize=blkh, blksizev=blkv, search=sch, searchparam=spar, levels=lvl)
MFlowFps(super, backward_vec1, forward_vec1, num=FramerateNumerator(last)*multinum, den=FramerateDenominator(last)*multiden, mask=mode, ml=255)
distributor()
I'm using it with coreavc 2.0 with cuda enabled.
My hardware specs:
q6600 @ 2.4 GHz
8 GB RAM
8600 GTS 256 MB RAM
I also set ffdshow to resize the video before it gets to the avisynth script to 480p resolutions if it's above that. But I made sure to keep the aspect ratio.
The problem I'm having is the audio doesn't seem to be in sync with the video sometimes. Is there anything I can do to improve the performance? My cpu seems to be going at 70% on average with this on. I thought resizing it in ffdshow first before it is sent through the avisynth script would help.














). I think with some patience i would make a mix of two methods for more optimal results (if there is possible).
