My source is an european anime that I got from a DVD. So no problem about the framerate, I keep it at 25 fps.
I rip it, dgindex it and now I am working on it with AvsPmod.
Code: Select all
mpeg2source("D:\ONYX\Cliches.d2v")
DGindex told me it was Interlaced. But when I checked the source with virtualdub frame per frame, it doesn’t seem interlaced. I did an analysis with the tool in MeGu (AVS script creator)i, it said it’s progressive but I don’t trust so much this tool.
I checked the VOB as well with The KMplayer an dit confirms it’s interlaced «Bottom Field First ».
Code: Select all
mpeg2source("D:\ONYX\Cliches.d2v")
Tdeint()
That’s my big problem. It’s anamorphic PAL. It should be easy with this script :
Code: Select all
mpeg2source("D:\ONYX\Cliches.d2v")
Tdeint()
Spline36Resize(1024,576)
Code: Select all
mpeg2source("D:\ONYX\Cliches.d2v")
Tdeint()
ConvertToRGB (cause I want to crop even number)
Crop(0, 13, -2, -11)
Now I need to resize it to get an anamorphic ratio (16/9) without ratio error. I used the resizer included in AvsPmod but I am not sure how to use it correctly. The pixel apect ratio comes from the d2v file.
So I got this new ratio which is the closest to 576p :
1008x544 (with a 0,16% error)
But I don’t want this resolution, I’d like to get a standard resolution like 1024x576. I need some help to get correct resolutions and ratio. I suppose I need to upsacle, then crop the right and left borders ?
At this point this is my script :
Code: Select all
mpeg2source("D:\ONYX\Cliches.d2v")
Tdeint()
ConvertToRGB
Crop(0, 13, -2, -11)
Spline36Resize(1024, 576)
ConvertToYV12()
3. Upsacle and cleaning
If I want to upscale my source at 1280x720, what script I should use ? Does it worth to do it ?
I am not very good at cleaning my source with avisynth, so I use the filter 2d_cleaner_optimized (Jim Casaburi) but maybe is there a way to use it in AVS ?
Here are my results with VirtualDub:
Before:
After: