|
|
Hey all,
I have a Freakazoid capture here and I was wondering what you would suggest to output a clean video? I was thinking of using mfToon. Is this a good idea?
Pic 1
Pic 2
Pic 3
[edit]
I tried using vmToon followed by LimitedSharpenFaster, here are my results... what do you guys think?BeforeAfter
It looks pretty decent, though two sharpeners add a lot of aliasing; it'd be better to tweak the sharpening in vmtoon than adding a second. Also, ssw/ssh control the edge aliasing/speed ratio, higher is smoother and slower, 1.0 is no antialiasing.
Once you do that you might need to tweak the chroma a little more, perhaps using a dumb rainbow remover like ssiq; it looks a little mottled in the last pair, but the others look okay so maybe it was just a bit of bleed on that frame.
I was wondering if I the file was captured at 480x360 would it be best to upscale it to 720x480 for an NTSC DVD or downsize it to another compliant resolution?
480x360 = 172,800 pixels
352x480 = 168,960 pixels
------------------------
3,840 pixels lost
OR
480x360 = 172,800 pixels
704x480 = 337,920 pixels
------------------------
165,120 pixels wastedI would imagine that resizing to 352x480 pixels would be the best DVD compliant way to go-- my source being 480x360? It's too bad that show isn't on any more... otherwise I'd re-record it :-P. But a question... I have NEVER authored a DVD using 352x480... will the DVD player quot;squishquot; it back to the right ratio?
Yes, just like an SVCD.
You might want to test which one looks better when played on the standalone, downsizing or upsizing.
I just tried to burn a DVD with half-D1 (352x480) resolution. Actually the final product looks good. I actually prefer the 352x480 over the original 480x360 because of the filtering chain (especially vmToon). I can fit 1 season/DVD now! BUT there are a couple of things I'd like to fix...
1 is 'shimmering' (Dont know if that is what you call it)... When using vmToon it adds little white speckles all over the place to some areas (mostly black). Why is this and how can I fix it? Also is there a color conversion I need to worry about with my source being MPEG-4 and my destination format being MPEG-2?
Also could you guys tell me what you think about my script?Code:
AVISource(quot;Freakazoid.aviquot;)
ColorMatrix(mode=quot;Rec.601-gt;Rec.709quot;)
BiFrost(interlaced=false).SmartSSIQ() #Remove Rainbows
UnDot().LRemoveDust_YV12(7,1) #Remove Noise
LimitedSharpenFaster(dest_x=352,dest_y=480,strength=255).LRemoveDust_YV12(7,1)
vmToon(ssw=3,ssh=3,strength=48,xstren=128)
Convolution3d(preset=quot;animeBQquot;)
Dup(threshold=5)Take a look around the lips and eyelashes. Those white quot;specksquot; were not there in the original and were added by vmToon.
It may be the combination of filters, I try to keep it to 2 general cleaners and a sharpener these days unless it's really terrible. Odd that you undo the limitedsharpener's effect with an lremovedust, though, that sticks out as suspicious.
If you could upload a short clip, I'll try to get some time to check it and play with it out tomorrow (bedtime now).
Thanks... you were right! Actually it was a combination of LimitedSharpenFaster and vmToon. The small white quot;dotsquot; were a result of oversharpening. I set LimitedSharpenFaster's quot;blurquot; variable at -1 (automatic).
PS- I removed the second LRemoveDust after LimitedSharpen.Code:
AVISource(quot;Freakazoid.aviquot;)
ColorMatrix(mode=quot;Rec.601-gt;Rec.709quot;)
BiFrost(interlaced=false).SmartSSIQ() #Remove Rainbows
UnDot().LRemoveDust_YV12(7,1) #Remove Noise
LimitedSharpenFaster(dest_x=352,dest_y=480,radius=5,strength=255,undershoot=0,soft=-1)
vmToon(ssw=3,ssh=3,strength=48,xstren=128)
Dup(threshold=2)
Convolution3d(preset=quot;animeBQquot;)
After I encoded I burned a test DVD. The image looked great, except haha, I made 2 mistakes. One was I just took the original audio which was encoded at 44.1k and placed it on a DVD, it played but unusually (higher-pitched voices). Also the Dup command had worked a little too well, I had exact duplicates and it combined them with near-duplicates causing stutter (:-P).
Thanks again,
-joshbm
That got rid of most of the dots... but I see that not all of them have disappeared! |
|