troy
29th April 2004, 21:25
I captured some video from my minidv cam with premiere. I then cut and exported the movie with no recompression to an avi file. I changed the fourcc of this file from dvsd to cdvc to use the mainconcept codec with avisynth. I used the following two scripts and I can not see any difference between the two scripts m2v video outputs.
Script1:
Avisource("D:\test\finalavi_no_recompress.avi")
converttoyuy2(interlaced=true)
fixbrokenchromaupsampling()
doubleweave().selectodd()
ConverttoYuy2()
Script2:
Avisource("D:\test\finalavi_no_recompress.avi")
doubleweave().selectodd()
ConverttoYuy2()
Did I put the order of the filters in script1 correctly. Should I see a noticable difference on the ouput m2vs for these two different scripts.
Script1:
Avisource("D:\test\finalavi_no_recompress.avi")
converttoyuy2(interlaced=true)
fixbrokenchromaupsampling()
doubleweave().selectodd()
ConverttoYuy2()
Script2:
Avisource("D:\test\finalavi_no_recompress.avi")
doubleweave().selectodd()
ConverttoYuy2()
Did I put the order of the filters in script1 correctly. Should I see a noticable difference on the ouput m2vs for these two different scripts.