Hi. I have a clip which is way too red so I played around with it in Vdub using RGBEQ. I got an OK-ish result. Then I tried it in MeGUI using Tweak(sat=0.7) and that simple command gave me a better looking image.
With Vdub, using sliders is nice and easy and you immediately see what you're getting. With MeGUI, I was constantly changing the script and then refreshing the preview. Is that the only way avisynth filtering can be done – typing, refreshing, typing, refreshing?
I've seen people say they do their avisynthing with Vdub so I tried it. However, that method seems even more cumbersome as you have to save and close the script before Vdub (using F2) registers the changes.
What, then, would you say is the most efficient way of previewing the effects of avisynth commands? Thanks for your time.
+ Reply to Thread
Results 1 to 7 of 7
-
-
forget vdub, use asvpmod >>>> http://forum.doom9.org/showthread.php?t=153248
you can use multi tabs and switch back & forth , you can compare before/after filtering and much more, quickly modify you script, preview again etc...*** DIGITIZING VHS / ANALOG VIDEOS SINCE 2001**** GEAR: JVC HR-S7700MS, TOSHIBA V733EF AND MORE -
Use AvsPmod.
Just be aware that it can be unstable.
Noting that VirtualDub is also just as unstable with Avisynth.Want my help? Ask here! (not via PM!)
FAQs: Best Blank Discs • Best TBCs • Best VCRs for capture • Restore VHS -
-
You can use animate within an AviSynth script to animate your Tweak() with different values.
Code:Function AnimateTweak(clip c, float saturation) { Tweak(c, sat=saturation) Subtitle(String(Tweak)) } WhateverSource() Loop(100, 0, 0) # loop frame 0 (or whatever frame you want) 100 times Animate (0,100, "AnimateTweak", last,0.0, last, 2.0) # vary saturation from 0.0 to 2.0 over the first 100 frames
Similar Threads
-
A comparison of AVIsynth denoise filters
By hello_hello in forum Video ConversionReplies: 99Last Post: 19th Jul 2024, 17:44 -
Avisynth MultiThreaded Effects
By lolman in forum Video ConversionReplies: 6Last Post: 19th Oct 2015, 07:32 -
Advice on avisynth filters
By angelroj7 in forum RestorationReplies: 16Last Post: 10th Feb 2014, 14:08 -
The side effects of hardware filters (screenshots)
By Brad in forum RestorationReplies: 6Last Post: 29th Jan 2014, 16:47 -
hardware effects and filters
By staticwarp in forum Newbie / General discussionsReplies: 2Last Post: 17th Feb 2013, 21:07