godus
9th August 2006, 20:49
I have a 19-minute PAL MPEG2 movie that I want to convert to NTSC. Usually I stay away from brainy stuff like AVIsynth but having no choice I've to take a bite. Reading through these forums, it seems AVIsynth is a piece of cake to many of you, but for me it's a hard nut to crack!
Follow instruction from some guides, I use DGIndex to get a D2V file, then use the AVS script below:
LoadPlugin("C:\DGIndex\DGDecode.dll")
LoadPlugin("C:\DECOMB\decomb521.dll")
LoadPlugin("C:\Convolution3D_yuy2\convolution3d.dll")
Mpeg2Source("C:\tmp\testmpg.d2v")
FieldDeinterlace(full=false)
ConvertToYUY2()
Convolution3d (preset="movieHQ")
LanczosResize(720,480)
(Well, someone says using Convolution3d() for high quality but I truly don't know what it does.)
Next, I fed this AVS script to CCE SP and obtain a MPV and MPA files. I apply DGPulldown to convert the frame rate from 23.97 to 29.97 to get a file named testmpg.pulldown.M2V.
(As another test, I also tried to pulldown from 25 to 29.97. No matter what frame rate is, I still got the out-of-synch problem below.)
Feeding the last M2V and the MPA files to EncoreDVD 1.5 to author an NTSC DVD, I see an error. The problem is: the video has been shortened to 18 minutes while the audio retains the original length of 19 minutes. EncoreDVD aborts and reports an unknown error.
From the guides I read, the method above should not throw the audio and video parts out of synch.
What could have gone wrong?
Also, when CCE runs, I notice that it shows the original movie contains 29000 frames, yet when CCE's done, it shows that only ablout 27000 frames have been processed. Is that strange? Or is that OK to be so?
Thank you very much for any help.
Follow instruction from some guides, I use DGIndex to get a D2V file, then use the AVS script below:
LoadPlugin("C:\DGIndex\DGDecode.dll")
LoadPlugin("C:\DECOMB\decomb521.dll")
LoadPlugin("C:\Convolution3D_yuy2\convolution3d.dll")
Mpeg2Source("C:\tmp\testmpg.d2v")
FieldDeinterlace(full=false)
ConvertToYUY2()
Convolution3d (preset="movieHQ")
LanczosResize(720,480)
(Well, someone says using Convolution3d() for high quality but I truly don't know what it does.)
Next, I fed this AVS script to CCE SP and obtain a MPV and MPA files. I apply DGPulldown to convert the frame rate from 23.97 to 29.97 to get a file named testmpg.pulldown.M2V.
(As another test, I also tried to pulldown from 25 to 29.97. No matter what frame rate is, I still got the out-of-synch problem below.)
Feeding the last M2V and the MPA files to EncoreDVD 1.5 to author an NTSC DVD, I see an error. The problem is: the video has been shortened to 18 minutes while the audio retains the original length of 19 minutes. EncoreDVD aborts and reports an unknown error.
From the guides I read, the method above should not throw the audio and video parts out of synch.
What could have gone wrong?
Also, when CCE runs, I notice that it shows the original movie contains 29000 frames, yet when CCE's done, it shows that only ablout 27000 frames have been processed. Is that strange? Or is that OK to be so?
Thank you very much for any help.