A huge frame rate in Avisynth converting mov

Discussion in 'Other video questions' started by TyMan4325, Feb 5, 2006.

  1. TyMan4325

    TyMan4325 Member

    Joined:
    May 27, 2005
    Messages:
    62
    Likes Received:
    0
    Trophy Points:
    16
    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.
     
  2. celtic_d

    celtic_d Regular member

    Joined:
    Jan 23, 2005
    Messages:
    3,352
    Likes Received:
    0
    Trophy Points:
    46
    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..
     

Share This Page