ntsc to pal conversion perfect

DVD (29.97i Fps) TO PAL DVD (25i Fps)

(programs needed)

windows xp or windows 2000
dvd decrypter
dvdtoavi 1.76
cce sp encoder 2.66.01.07
mpeg2dec2
avisynth 205
SmoothDeinterlacer.dll
bicubicresize
DVDMaestro

Run DVD2AVI and load the decrypted VOBs using the "Open" item in the "File" menu (you need to choose only the first one of a sequence).
Check the "None" item in the "Field Operation" sub-menu of the "Video" menu.
Choose the desired audio track number (usually "Track 1") in the "Track Number" sub-menu of the "Audio" menu.
Check the "Demux" item in the "Dolby Digital" sub-menu of the "Audio" menu.
Check the "Auto Select" item in the "Channel Format" sub-menu of the "Audio" menu.
Check the "Off" item in the "48 -> 44.1 KHz" sub-menu of the "Audio" menu.
Select the "Save Project" item in the "File" menu.
Choose a location and filename for the DVD2AVI project name. A small text file with the D2V extension will be created, and the audio track specified above will be extracted from the VOB into an AC3 file in the same location.
Create and open a new text file with an AVS extension (to be used with AVISynth), using your favorite text editor (like Notepad).
Add the following lines, filling in the location and filename of the file you created above:

(MY .AVS SCRIPT)

LoadPlugin("C:\mpeg2dec2\MPEG2DEC2.dll")
LoadPlugin("C:\SmoothDeinterlacer.dll")
MPEG2Source("C:\Documents and Settings\xxxxxx\My Documents\dvd\1.d2v")
SeparateFields()
Weave()
SmoothDeinterlace(doublerate=true)
ConvertFPS(50)
bicubicresize(720,576)
SeparateFields()
SelectEvery(4,0,3)
Weave()

IF YOU GET JERKEY PLAYBACK USE THIS SCRIPT

LoadPlugin("C:\mpeg2dec2\MPEG2DEC2.dll")
LoadPlugin("C:\SmoothDeinterlacer.dll")
MPEG2Source("C:\Documents and Settings\xxxxxx\My Documents\dvd\1.d2v")
SeparateFields()
Weave()
SmoothDeinterlace(doublerate=true)
ConvertFPS(50)
bicubicresize(720,576)
SeparateFields()
SelectEvery(4,1,2)
Weave()


Save the AVS file.
Ensure that MPEG2DEC.dll is installed. (If this file is placed in the \WINNT\System32 or \Windows\System directory, the full path is not needed, as illustrated in the above script. Otherwise, add the full path to the LoadPlugin() command.)
Ensure that SmoothDeinterlacer.dll is installed. (If this file is placed in the \WINNT\System32 or \Windows\System directory, the full path is not needed, as illustrated in the above script. Otherwise, add the full path to the LoadPlugin() command.



Start cce encoder add your .avs file
dont tick pulldown
encode

i use DVDMaestro to produce dvd's
just input your your endoded mpv from cce
just input your your .ac3 from dvdtoavi (DOOM9 for more info)
 
Last edited:
;)

joanna wrote:
"just input your your .ac3 from dvdtoavi (DOOM9 for more info)"

i think it help:

after rip a dvd,search for
"vts_01_INFO.txt"
open this with notpad and in
STREAM
you see some like this:

***************
* Stream Info *
***************



Stream[001] X=[[0xE0] Video NTSC 720x480] [] [] [] []
Stream[002] X=[[0x80] Audio English AC3(6Ch) 48kHz ] [] [] [] []
Stream[003] X=[[0x81] Audio Portuguese AC3(6Ch) 48kHz ] [] [] [] []
Stream[004] X=[[0x20] Subtitle English ] [] [] [] []
Stream[005] X=[[0x21] Subtitle Portuguese ] [] [] [] []
Stream[006] X=[[0x22] Subtitle Not Specified ] [] [] [] []
Stream[007] X=[[0x23] Subtitle Not Specified ] [] [] [] []
Stream[008] X=[[0x??] Others] [] [] [] []


select the track you want!
the first stream is english.....
in this case "portuguese" is the second stream.

and use in dvd2avi :
Audio -> Channel Format = Auto Select
Audio -> Dolby Digital = Demux
Audio -> MPEG Audio = Demux

and get your audio!!

ps:
joanna,
if something is wrong,please pm to me and i correct or complete,ok?
;)
 
Thanks for that Joanna, I saw all that on Doom9 site a while back and been meaning to implement it for DVD2SVCD. Just havent got there yet.
 
update

also i've had absolute perfect results useing MainConcept MPEG Encoder v1.2

script=

LoadPlugin("MPEG2DEC2.dll")
LoadPlugin("C:\SmoothDeinterlacer.dll")
MPEG2Source("C:\Documents and Settings\geoege\My Documents\dvd\1.d2v")
SeparateFields()
Weave()
SmoothDeinterlace(doublerate=true)
bicubicresize(720,576)
ConvertFPS(50)
SeparateFields()
SelectEvery(4,0,3) or SelectEvery(4,1,2)
Weave()

useing

avisynth 205
mpeg2dec2
SmoothDeinterlace
bicubicresize

load a mpeg2 pal file (video/wav) into MainConcept MPEG Encoder v1.2
set all your settings

then save settings as project,named ntsc to pal

load your avs script into MainConcept
change mpeg type from dvd to your project named ntsc to pal

then click encode




i did try
MainConcept MPEG Encoder v1.3
when loading avs file crash
 
Last edited:
Top