View Full Version : Motionblur without plugins?
Guest
3rd January 2005, 00:28
I just wonder - has anyone been succesful by producing an okay motionblur with a avisynth script(without plugins)? If so... how? :)
Tin2tin
actionman133
3rd January 2005, 12:53
it depends what sort of blur you want.
if its motion estimation to detect movement and add blur in specific spots, then i sincerely doubt it. maybe someone has a plugin stashed away somewhere, but i dont know it.
The other is blending adjacent frames together. This is really a cheat, but it can be done.
The simplest way is to do this...
AssumeFieldBased.Weave.VerticalReduceBy2 ()
It does a good blend job with adjacent frames. It's simple, but i don't know of any other, more sophisticated method.
Leak
3rd January 2005, 13:09
Originally posted by actionman133
The simplest way is to do this...
AssumeFieldBased.Weave.VerticalReduceBy2 ()
It does a good blend job with adjacent frames. It's simple, but i don't know of any other, more sophisticated method.
TemporalSoften(9,255,255,255,2) (http://www.avisynth.org/Soften)
You might want to tweak that radius of 9 in there... :D
scharfis_brain
3rd January 2005, 14:43
real motionblur can only be achieved using the mvtools.dll from manao.
use mvconvertfps() to blow up your video to 10 times the framerate,
then use temporalsoften(2,255,255)
then use selectevery(10,0)
zettai
3rd January 2005, 15:38
Unfortunately mvconvertfps has been disabled in mvtools since version 0.9.5 and that version is no longer available on manao's site...
Didée
3rd January 2005, 15:48
Even without any motion search, the combination of kassandro's RemoveGrain+Repair+TemporalRepair can give a usable motion blur. Follow the examples given in the documentation, but replace Clense() with TemporalSoften() /w high thresholds.
Manao
3rd January 2005, 19:26
I've put MVTools v0.9.5 on http://manao4.free.fr/
I'm working on the MVTools currently, and as soon as I find the core stable enough, a new release will be out. It might include MVBlur / MVInterpolate and MVConvertFPS.
Guest
3rd January 2005, 19:46
Thanks!! Looking forward to try your solutions.
Tin2tin
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.