View Full Version : NTSC -> PAL use AviSynth & cce 2.70
Fedor Sumkin
23rd February 2005, 01:31
Who have a working script to do DVD NTSC->PAL ? can ne1 post script here ?
plz, speak easy becouse my native language is russian.
screw
24th February 2005, 15:45
This is what I am using:
------------------------------------------------
# NTSC DVD (29.970 fps) to PAL DVD (25 fps)
LoadPlugin("<your path>DGDecode.dll")
LoadPlugin("<your path>Decomb511.dll")
mpeg2source("Your_File.d2v")
Telecide(Order=1,Guide=1,Post=0)
Decimate(Cycle=5)
LanczosResize(720,576)
AssumeFPS(25)
ConvertToYUY2()
------------------------------------------------
You will get 25 FPS PAL instead of 23.976 FPS NTSC. D2V file have to be made without "Forced Film".
The bad side is that you need also re-compress the audio, "stretching" it to 95.904%.
Matthew
24th February 2005, 23:02
For progressive material (23.976) I would not do what screw does. Save d2v using forced film.
Then use
LoadPlugin("<your path>DGDecode.dll")
mpeg2source("Your_File.d2v")
LanczosResize(720,576)
AssumeFPS(25)
ConvertToYUY2()
Of course you will also have to compact your audio just like screw said. But this is standard procedure for 24 fps->25 fps.
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.