batmanMG wrote:i need new eyes... or a better attunement to detail... i can't tell the diff between the ones above... but thats not the point
mpeg2source("path",ipp=true,cpu=6)
SangNom(order=1,aa=32)
Unblend()
Decimate(cycle=5, mode=2)
Crop(8, 0, -8, -0)
degrainmedian().
tweak(bright=-20,sat=1.6,cont=1.2)
fft3dfilter(sigma=5,plane=4,bw=48,bh=48,bt=4,ow=24,oh=24)
mftoonlite()
LimitedSharpen(ss_x=2.0, ss_y=2.0,Smode=3)
Lanczosresize(640,480)
Krisqo wrote:Go gentle on the scripting for Place Promised. I only used MFToon and a light deen filter.
trythil wrote:Stuff like
- Code: Select all
crop(8,0,-8,0)
lanczosresize(720,480)
illustrates one of my problems with it: people contributing scripts without noting exactly what they were doing. (Yes, I was guilty of this too.)
My objection to that script segment is that it screws with the aspect ratio by clipping off the side black bars and horizontally stretching the image to fit the original image size.
jasper-isis wrote:Krisqo wrote:Go gentle on the scripting for Place Promised. I only used MFToon and a light deen filter.
I don't know if I would consider mftoon "gentle" by any means...
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\TIVTC.dll")
mpeg2source("C:\AMV_SOURCES\CARDCAPTOR1\sakura1-FIXED.d2v",cpu=4,upconv=true)
TFM(d2v="C:\AMV_SOURCES\CARDCAPTOR1\sakura1-FIXED.d2v", PP=0)
Tcomb()
TDecimate(mode=1)
ConvertToYV12()
deen("w2d",7,5,9)
WarpSharp()
FastLineDarken()
SDDerainbow()
tweak(sat=1.4, cont=1.0, bright=-10)
ColorYUV(gain_u=1)
ConvertToRGB32()
Crop(8,60,-8,-60)
BiCubicResize(640,360)
AssumeFPS(24)

Krisqo wrote:
For example (yes... you may use this without credit) My script for Cardcaptor Sakura DVD1
Youtuber wrote:What is an MEP exactly? I looked it up but I don't think it has anything to do with being a Member of the European Parliament.


Looks like you're not knowing what you're doing. If you remove the "upconv=true" from mpeg2source(...), you don't need the ConvertToYV12(), because your source is in YV12 and gets converted to YUY2 by this parameter. So you're doing a conversion YV12->YUY2->YV12.Krisqo wrote:
- Code: Select all
...
mpeg2source("C:\AMV_SOURCES\CARDCAPTOR1\sakura1-FIXED.d2v",cpu=4,upconv=true)
TFM(d2v="C:\AMV_SOURCES\CARDCAPTOR1\sakura1-FIXED.d2v", PP=0)
Tcomb()
TDecimate(mode=1)
ConvertToYV12()
.....
I had to do the colorspace change because I couldn't filter anything without using the ConvertToYV12().
Oops. My fault. Judging from it's name I was assuming it's an deinterlacer, but it isn't. It's Dedot and DeRainbow. So when are you doing the deinterlacing at all? Probably a proper IVTC shortens your filter chain. And as I understand it, the TComb() should be in front of TFM(...).Keeper of Hellfire wrote:And if you remove the "PP=0" from the TFM(...) command after it has fixed your DV2, you don't need the TComb(), because TFM perfoms the deinterlacing.
Keeper of Hellfire wrote:Looks like you're not knowing what you're doing. If you remove the "upconv=true" from mpeg2source(...), you don't need the ConvertToYV12(), because your source is in YV12 and gets converted to YUY2 by this parameter. So you're doing a conversion YV12->YUY2->YV12.Krisqo wrote:
- Code: Select all
...
mpeg2source("C:\AMV_SOURCES\CARDCAPTOR1\sakura1-FIXED.d2v",cpu=4,upconv=true)
TFM(d2v="C:\AMV_SOURCES\CARDCAPTOR1\sakura1-FIXED.d2v", PP=0)
Tcomb()
TDecimate(mode=1)
ConvertToYV12()
.....
I had to do the colorspace change because I couldn't filter anything without using the ConvertToYV12().
And if you remove the "PP=0" from the TFM(...) command after it has fixed your DV2, you don't need the TComb(), because TFM perfoms the deinterlacing.
I'm not familiar with all of the filters that you are using, but probably you're doing some more nonsense.


Users browsing this forum: No registered users and 1 guest