PDA

View Full Version : Avisynth Script Help


Sniffer
11th November 2003, 21:03
I have read and gather some info but there is something i can't understand still.


Movie : Die Another Day - PAL - Interlaced - 720x576

I use AR Calculator and in the crop give me this results

Left - 2
Right - 4
Up - 78
Down - 74 so i thought that i will use crop like this

CROP (2,4,78,74) - But when looking Avisynth Site they have something like this (0,4,720,432) and i think what the hell it means 0 and 4 (maybe left and right) but where i crop the upside and the downside????

Second trouble, i have done the project with DVD2AVIdg and it give me a xxxxxx.d2v file, how can i call the d2v file in virtualdubmod,take note that this project was made directly from vob files. I have tried avisource, directshowsource,mpegsource,mpeg2source. i always get an error.

Then i use lanczosresize, best aspect is (592,240)

Then i need to use bob to deinterlace, how to do it, with this info
Bob(clip clip [, float b, float c][, int height])

It's hard for me,i'm really needing an example on this situation for instance.

My stupid script :(

MPEG2SOURCE("G:\Work on Die Another Day\Die Another Day Project.d2v")
CROP(2,4,78,74)
LANCZOSRESIZE(592,240)

i think i forgot to load some plugins or not like this


LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
:(

help is needed.

Sniffer
11th November 2003, 21:50
I have manage to solve all my problems, i have download the mpegdec3.dll plugin, make the crop, the resize.....


I need help only for the Bob deinterlacer, could you guy's give me some example.

Thanks for everything.
Sniff

manono
11th November 2003, 22:14
Hi-

I seriously doubt that the PAL Die Another Day is interlaced. Open the script in VDubMod and scroll around and look carefully to see if you see any interlacing. DVD2AVI is often wrong about that. If it does appear to be interlaced, then get the Decomb Filter and add:

Telecide(Order=1,Guide=2)

to your script to see if that fixes it. Don't wreck a perfectly good movie by deinterlacing it, if you can possibly avoid doing so.

And if you ever do need to deinterlace, I don't think you should use Bob when there are many more better ones available. If you want to use Bob sometime, just put this in your script:

Bob() :)

Sniffer
12th November 2003, 01:19
Thanks for your time and help manono.:)

Everything more clear now, and you were right, dvd2avi say's is interlaced but it isn't.;)