Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 9th October 2012, 14:09   #1  |  Link
thomaz909
Registered User
 
Join Date: Jul 2004
Posts: 40
what is the fastest good looking mvtools framerate doubling script ?

atm i use this:

Code:
SetMemoryMax(64)
SetMTMode(5,4)
ffdShow_source()
SetMTMode(2)
super=MSuper(pel=1, hpad=0, vpad=0)
backward_1=MAnalyse(super, chroma=false, isb=true, blksize=16, blksizev=16, searchparam=3, plevel=0, search=3, badrange=(-24))
forward_1=MAnalyse(super, chroma=false, isb=false, blksize=16, blksizev=16, searchparam=3, plevel=0, search=3, badrange=(-24))
backward_2 = MRecalculate(super, chroma=false, backward_1, blksize=8, blksizev=8, searchparam=0, search=3)
forward_2 = MRecalculate(super, chroma=false, forward_1, blksize=8, blksizev=8, searchparam=0, search=3)
MBlockFps(super, backward_2, forward_2, num=FramerateNumerator(last)*2, den=FramerateDenominator(last)*1, mode=0)
SetMTMode(1)
GetMTMode(false) > 0 ? distributor() : last
but this script eats 3-4x more cpu than without mvtools.

is there anything i can do to speed it up ?

p.s.: my scripting experience with avisynth is nearly 0
thomaz909 is offline   Reply With Quote
Old 9th October 2012, 15:23   #2  |  Link
Didée
Registered User
 
Join Date: Apr 2002
Location: Germany
Posts: 5,391
Code:
SetMemoryMax(666/6)
SetMTMode(5,4)
ffdShow_source()
SetMTMode(2)
super=MSuper(pel=1)
bvec=MAnalyse(super, isb=true, blksize=16)
fvec=MAnalyse(super, isb=false, blksize=16)
MBlockFps(super, bvec, fvec, num=0, mode=3)
distributor()
return(last)
That's much faster. But, of course: more effort --> better results, less effort --> worse results.

There's no hard rule to tell what is "good looking" and what not, or how much CPU effort can be spent, or how little the CPU effort has to be. All things depend on many other things.
__________________
- We´re at the beginning of the end of mankind´s childhood -

My little flickr gallery. (Yes indeed, I do have hobbies other than digital video!)
Didée is offline   Reply With Quote
Old 9th October 2012, 23:30   #3  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
The fastest way undoubtably does little.
the bestest way takes a little longer.
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???
StainlessS is offline   Reply With Quote
Old 10th October 2012, 20:12   #4  |  Link
aegisofrime
Registered User
 
Join Date: Apr 2009
Posts: 478
Quote:
Originally Posted by StainlessS View Post
The fastest way undoubtably does little.
the bestest way takes a little longer.
Do you have a recommendation for the bestest way? I'm currently using Interframe, but still getting some artifacts especially with fast moving hands.
aegisofrime is offline   Reply With Quote
Old 10th October 2012, 20:27   #5  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,407
You didn't like the results from Didée's suggestion? Like Didée already said:
Quote:
Originally Posted by Didée View Post
But, of course: more effort --> better results, less effort --> worse results.
If you want to try increasing the speed you can start tuning options, there is a lot of room for tweaking.

MVTools

Maybe try messing with search, searchparam and blksize? Not that I really have any idea what quality and speed you need but these are what I would start messing with.

hint: maybe search = 4 or 5 with searchparam = 8 to 16? I must admit that any MVTools script I use is tuned for quality with almost no regard for speed.

Last edited by Asmodian; 10th October 2012 at 20:34. Reason: hint
Asmodian is offline   Reply With Quote
Old 11th October 2012, 21:20   #6  |  Link
bcn_246
Registered User
 
bcn_246's Avatar
 
Join Date: Nov 2005
Location: UK
Posts: 117
Have a look at the SmoothVideo Project.
bcn_246 is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 21:36.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.