uko
16th August 2005, 13:53
Hallo,
I have done a lot of movies with CCE and always was satisfied with quality, but always encoding PAL movies. Now I trying to encode 5DVD collection "Bruce Lee" it's NTSC R1 and I can't get good result.
I tryed to find a helpful scripts on doom, but wasn't helpfull or did not work.
I have some sripts(used before) and tryed to mixed it & encode m2v file.
the orginal source is
NTSC Interlaced 29.970fps
720x480 4:3
chroma:420
Zig-Zag
I mixed NTSC > PAL convertor & unblending tool
I used separetly NTSC 2 PAL & unblend script before, for ex. unblend in CASINO or CONAN and NTSC2PAL in HITCHHIKER'S GUIDE 2the GALAXY and get perfect result.
So i try to use this mixed one on Bruce Lee :
AVISource("D:\Brucelee\d1\d1_DVD2AVI_d2v_vfapi.avi").NTSC2PAL()
LoadPlugin("C:\Install\DVD\NEW\MPEGDecoder_YV12\MPEGDecoder.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb.dll")
ConvertToYUY2()
Telecide()
function NTSC2PAL(clip c) {
# Fairly good NTSC->PAL conversion. Would be better with Smart Bob. :-)
Assert(c.height == 480, "NTSC2PAL: input clip must have 480 scan lines")
Bob(c, height=576)
ChangeFPS(50)
SeparateFields().SelectEvery(4,0,3)
return Weave()
}
I get very BAD result. Picture is PAL 720x576 25fps but has "chameleon walk" effect. It means the frames goes like 1,2,3,4,3,4,5,6,7....and sometimes it looks like blended.
So I try to encode it in 2 steps:
1. unblend the orginal source
2. than convert to PAL
1. step did good unblended result, but 2.step (30>25fps) created back blended fileds
I tryed it once more, but in reverse step, but same unsatisfied result.
second (2 step) metode was without "chameleon walk effect"
I have headache I don't know what to do :devil:
Pleeease anybody help me.
Thanks, Thanks
I have done a lot of movies with CCE and always was satisfied with quality, but always encoding PAL movies. Now I trying to encode 5DVD collection "Bruce Lee" it's NTSC R1 and I can't get good result.
I tryed to find a helpful scripts on doom, but wasn't helpfull or did not work.
I have some sripts(used before) and tryed to mixed it & encode m2v file.
the orginal source is
NTSC Interlaced 29.970fps
720x480 4:3
chroma:420
Zig-Zag
I mixed NTSC > PAL convertor & unblending tool
I used separetly NTSC 2 PAL & unblend script before, for ex. unblend in CASINO or CONAN and NTSC2PAL in HITCHHIKER'S GUIDE 2the GALAXY and get perfect result.
So i try to use this mixed one on Bruce Lee :
AVISource("D:\Brucelee\d1\d1_DVD2AVI_d2v_vfapi.avi").NTSC2PAL()
LoadPlugin("C:\Install\DVD\NEW\MPEGDecoder_YV12\MPEGDecoder.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Decomb.dll")
ConvertToYUY2()
Telecide()
function NTSC2PAL(clip c) {
# Fairly good NTSC->PAL conversion. Would be better with Smart Bob. :-)
Assert(c.height == 480, "NTSC2PAL: input clip must have 480 scan lines")
Bob(c, height=576)
ChangeFPS(50)
SeparateFields().SelectEvery(4,0,3)
return Weave()
}
I get very BAD result. Picture is PAL 720x576 25fps but has "chameleon walk" effect. It means the frames goes like 1,2,3,4,3,4,5,6,7....and sometimes it looks like blended.
So I try to encode it in 2 steps:
1. unblend the orginal source
2. than convert to PAL
1. step did good unblended result, but 2.step (30>25fps) created back blended fileds
I tryed it once more, but in reverse step, but same unsatisfied result.
second (2 step) metode was without "chameleon walk effect"
I have headache I don't know what to do :devil:
Pleeease anybody help me.
Thanks, Thanks