Hey guys, I am running into more problems converting some .mov's. Ok I loaded my mov into this script: LoadVFAPIPlugin("C:\Program Files\AviSynth 2.5\plugins\QTReader.vfp", "QTReader") QTReader("c:\MyFile.mov") Bilinearresize(720,480) FlipVertical() ConverttoYUY2() MSharpen() Now I had a convertFPS line in there with a parameter of 29.97. It gave me an error saying it was too small. So I loaded my script into virtualdub to see what was up. The file information said it has a frame rate of 600.00 frames per second. I know the original file has a frame rate of around 5fps. Why is this happening? Is it the QTReader? Any help would be great as usual.
Yeah, the quicktime VFAPI plugin is buggy. You need to use selectEvery, changefps, etc. to get rid of all the duplicate frames. You could also use directshowsource() depending on the mov and what filters you have installed..