PDA

View Full Version : converting NTSC to PAl need a little advice


jamieuk
2nd October 2004, 02:41
Hi my goal is to put 15 MMA fights on 2 one DVD-r disk.

I have re-authored all of my DVD`s and cut all the fights that I want.

Opened TMPEG DVD Aurthor loaded all MMA fights as sperate track. played around with my menu to make it look good.

I then click the "begin output" button > and I get this error

You cannot mix NTSC and PAL on a single DVD.

You cannot mix NTSC and PAL on a single DVD.
Please use either NTSC or PAL format.

some of my DVD`s are from the USA and soem are from the UK >>>> is there any easy way of converting them to the same region resolution etc.

any advie you can give me is most apreciated !! I am doing this for a friend in the USA.

cheers jamie

gooki
6th October 2004, 05:30
Avisynth is your friend. Here's the script I use for converting NTSC NTSC to PAL.

------------------------

# NTSC (59.94 fps) to PAL (50 fps)
LoadPlugin("c:\\plugins\\MPEG2Dec.dll")
LoadPlugin("c:\\plugins\\SmoothDeinterlacer.dll")
mpeg2source("Sledding Project.d2v")
SmoothDeinterlace(doublerate=true)
LanczosResize(720,576)
ChangeFPS(50)
SeparateFields()
SelectEvery(4,0,3)
Weave()

------------------------