punistation
29th August 2003, 12:13
Howdy ho!
First things first, I should admit I'm a poor neophyte when it comes to Avisynth. I've been using it (v2.08) to make several nice XviD encodes, but that's only using a bare-bones basic AVS script, then re-using it as a template. I mainly follow step by step "How To..." guides. This is probably because I'm terrible at programming. The only thing I can program is VCR+, and even that's pushing it.
However, when absolutely needed, I try out the occasional filter. I also read lots've guides and forum threads about how to use a particular filter... so I like to think I'm a nice newbie. I try before I cry, y'know? :p
That said, I've been learning how to use some filters to get rid of the dreaded rainbow effect in my latest anime encode attempt, Armitage III (Region 1-4). Here's a sample of what I'm up against:
CLICK ME (http://punistation.wgwashu.com/Armitage.avi)! (2.8MB AVI)
:p (I know the absence of the lead jailbait anime babe makes for a boring
few seconds, but this scene captures the yucky rainbow effect perfectly!)
Reading lots've forum threads, I decided to go with SmartsmootherIQ, and what I think is meant to be a better replacement, AntiBlink. Problem is, neither really worked that well.
AntiBlink just couldn't get rid of the rainbows that well. Maybe it was just me not fully understanding how to tweak it just right, but remember my allergy to programming. I gave it the flick after an hour or two of frustrating experimentation. :(
SmartsmootherIQ worked magnificently when used as a VirtualDub filter, but that brings the icky RGB thing into it. Of course, the worst bit is an encoding rate of 1fps. I've experienced the joys of using Fast Recompress, and I don't want to lose it. Sadly, the settings don't work the same when I use Smartsmoother in Avisynth. A perfect setting of 11-200 will yield a horrible blurry mess when used in Avisynth, and I spent ages raising and lowering the settings to get a VirtualDub equivilent. I failed. rainbows remained.
But then I had me an idea: "Why not use both?"
...and I did. Please compare and contrast this new encode with the AVI posted above. The AVS script I used is quoted below. I'm very happy with the results. :)
CLICK ME (http://punistation.wgwashu.com/Armitagee.avi)! (2.5MB AVI)
Import("C:\DVD\AviSynth-Plugins\vdub_filters.avs")
mpeg2source("C:\DVD\DVD\ARM.d2v")
BicubicResize(640,480,0,0.5)
Antiblink(15,20,false)
ConvertToRGB()
VD_SmartSmoothIQ(11, 80, true)
ConvertToYUY2()
Telecide(chroma=true,gthresh=50,guide=1,threshold=30)
Decimate(5)
It took ages to get the right sequence, let me tell you! I'd get rainbows if the resize filter was after the Smoother, or the Telecide before the Antiblink, etc. I finally tried the above, and I reckon it worked great!
Sadly, the problem is that the encoding process itself (on Fast Recompress) is an average of 1fps. I get a spurt of 2-3fps, then a few seconds of 0fps. It stays like that the whole way, so on average it's about 1fps. Someone like me may ask "why not just use SmartsmootherIQ in VirtualDub?" Well, I compared it's results to my AVS script above, and mine looks much better. It really does.
So, my question: is there anything I can do to speed things up? :(
1fps really grips my bum. All that forum reading and filter experimenting, and I finally get a nice AVS script... only it encodes at a snail's pace. I really don't want to have to leave my PC alone to itself for over 48hrs just get a nice 40min anime episode if I don't have to. Can anything be done?
Thankee kindly in advance for any help!
Kisses XXOOXX
Jen
First things first, I should admit I'm a poor neophyte when it comes to Avisynth. I've been using it (v2.08) to make several nice XviD encodes, but that's only using a bare-bones basic AVS script, then re-using it as a template. I mainly follow step by step "How To..." guides. This is probably because I'm terrible at programming. The only thing I can program is VCR+, and even that's pushing it.
However, when absolutely needed, I try out the occasional filter. I also read lots've guides and forum threads about how to use a particular filter... so I like to think I'm a nice newbie. I try before I cry, y'know? :p
That said, I've been learning how to use some filters to get rid of the dreaded rainbow effect in my latest anime encode attempt, Armitage III (Region 1-4). Here's a sample of what I'm up against:
CLICK ME (http://punistation.wgwashu.com/Armitage.avi)! (2.8MB AVI)
:p (I know the absence of the lead jailbait anime babe makes for a boring
few seconds, but this scene captures the yucky rainbow effect perfectly!)
Reading lots've forum threads, I decided to go with SmartsmootherIQ, and what I think is meant to be a better replacement, AntiBlink. Problem is, neither really worked that well.
AntiBlink just couldn't get rid of the rainbows that well. Maybe it was just me not fully understanding how to tweak it just right, but remember my allergy to programming. I gave it the flick after an hour or two of frustrating experimentation. :(
SmartsmootherIQ worked magnificently when used as a VirtualDub filter, but that brings the icky RGB thing into it. Of course, the worst bit is an encoding rate of 1fps. I've experienced the joys of using Fast Recompress, and I don't want to lose it. Sadly, the settings don't work the same when I use Smartsmoother in Avisynth. A perfect setting of 11-200 will yield a horrible blurry mess when used in Avisynth, and I spent ages raising and lowering the settings to get a VirtualDub equivilent. I failed. rainbows remained.
But then I had me an idea: "Why not use both?"
...and I did. Please compare and contrast this new encode with the AVI posted above. The AVS script I used is quoted below. I'm very happy with the results. :)
CLICK ME (http://punistation.wgwashu.com/Armitagee.avi)! (2.5MB AVI)
Import("C:\DVD\AviSynth-Plugins\vdub_filters.avs")
mpeg2source("C:\DVD\DVD\ARM.d2v")
BicubicResize(640,480,0,0.5)
Antiblink(15,20,false)
ConvertToRGB()
VD_SmartSmoothIQ(11, 80, true)
ConvertToYUY2()
Telecide(chroma=true,gthresh=50,guide=1,threshold=30)
Decimate(5)
It took ages to get the right sequence, let me tell you! I'd get rainbows if the resize filter was after the Smoother, or the Telecide before the Antiblink, etc. I finally tried the above, and I reckon it worked great!
Sadly, the problem is that the encoding process itself (on Fast Recompress) is an average of 1fps. I get a spurt of 2-3fps, then a few seconds of 0fps. It stays like that the whole way, so on average it's about 1fps. Someone like me may ask "why not just use SmartsmootherIQ in VirtualDub?" Well, I compared it's results to my AVS script above, and mine looks much better. It really does.
So, my question: is there anything I can do to speed things up? :(
1fps really grips my bum. All that forum reading and filter experimenting, and I finally get a nice AVS script... only it encodes at a snail's pace. I really don't want to have to leave my PC alone to itself for over 48hrs just get a nice 40min anime episode if I don't have to. Can anything be done?
Thankee kindly in advance for any help!
Kisses XXOOXX
Jen