Hi all,

Using a script I got from jagabo that I adapted for this conversion:

Load_Stdcall_plugin("C:\AviSynth 2.5\plugins\yadif.dll")
audio = NicAC3Source("D:\DELAY -159ms.ac3").delayAudio(-0.159)
video=MPEG2Source("D:\Vid.d2v", cpu=0).converttoyuy2(interlaced=true)
video.yadif(1,1).spline64resize(768, 576).SeparateFields().SelectEvery(4,0,3)
a=SelectEven().spline64resize(768,288)
b=SelectOdd().spline64resize(768,288)
AssumeFieldBased(a).convertfps(50)
AssumeFieldBased(b).convertfps(50)
video=weave().converttoyv12(interlaced=true)
AudioDub(video, audio).bilinearresize(720,576)
trim(3135,5134)

My reason for doing this is because I had a client that wanted to convert a PAL video to DVD and I wanted to test out my various DVD Players

I used QuEnc to encode the video and audio, then Muxman to create a PAL DVD - it plays OK on my LG MPEG4 player but on my two other DVD-only players it has severe "ghosting" on fast motion scenes (it was a hockey game)

I did this as a test to see if I could record this homemade PAL DVD from my LG Player to my DVDRecorder - it worked - and the resulting file was 720x480 4:3 29.970

I am wondering if I can improve this script and also why the two other DVD players did such a crappy job playing back the PAL DVD. Is SelectEvery(4,0,3) OK or should it be different when dealing with PAL format?

TIA