hms
10th June 2004, 23:20
Satellite premium ntsc movie.pva recordings:
Impossible to demux with Project X-
For me the only way to make a clean playing NTSC DVD:
Convert .pva to .m2v with Project X and re-encode using this AviSynth script:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb521.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
Mpeg2Source("F:\movie\movie.d2v",idct=5)
Telecide(order=1,guide=1,post=2,vthresh=50)
Decimate()
AssumeFrameBased
SeparateFields
SelectEvery(8, 0,1, 2,3,2, 5,4, 7,6,7)
Weave
AssumeFPS(29.97)
YV12toYUY2()
For authoring DVD (using IfoEdit) only an audio offset (in my case-500ms) was required.
Impossible to demux with Project X-
For me the only way to make a clean playing NTSC DVD:
Convert .pva to .m2v with Project X and re-encode using this AviSynth script:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb521.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DGDecode.dll")
Mpeg2Source("F:\movie\movie.d2v",idct=5)
Telecide(order=1,guide=1,post=2,vthresh=50)
Decimate()
AssumeFrameBased
SeparateFields
SelectEvery(8, 0,1, 2,3,2, 5,4, 7,6,7)
Weave
AssumeFPS(29.97)
YV12toYUY2()
For authoring DVD (using IfoEdit) only an audio offset (in my case-500ms) was required.