PDA

View Full Version : It is possible to Convert NTSC from PAL source...??


Falken
24th May 2002, 18:51
Hi...


It is possible to Convert NTSC from a PAL source...??

I tired the Asifanwar method but could not find
smooth video conversion..

Is there any better solution for my problem...??


Thanks

DJ Bobo
24th May 2002, 19:25
You wanna convert from PAL to NTSC?
Nothing easier than that, just write the following in your AVS script:

AssumeFPS(23.976)

That's it.

Falken
25th May 2002, 05:59
I had captured the video from a analog source.
it is interlace avi file which I wanna convert to NTSC..

I used that you mention, video speed was just fine, my problem is
that when I convert the video size
from PAL 720x576 to 720x480 NTSC

after encoding in CCE, my encoded video have flicker
in some areas..
How Can I remove them...??

dividee
25th May 2002, 12:22
Resize the fields instead of resizing the frame:

SeparateFields().BilinearResize(720,240).Weave()

trbarry
25th May 2002, 13:57
Also SimpleResize ( www.trbarry.com/SimpleResize.zip ) has an option for resizing interlaced material without blending the 2 fields. Use:

InterlacedResize(720,480)

- Tom