![Thumbs up :up:](./images/smilies/icon_local_up.gif)
Here I posted a screenshot of what the problem consists:
![Image](http://i1245.photobucket.com/albums/gg596/zKillerz/Why.png)
If someone can help...ASAP please
Yay!!Removing the audio did the trickMister Hatt wrote:So the fact that this is a bad fansub aside, that doesn't look like VFR to me given the framerate is correct and the framecount is not. It simply isn't reading the later frames. Could be the audio is borking it though. I've seen some VfW tools which will cut out video when the audio ends, and your duration seems vaguely like an AMV duration with the whole song muxed in. See what happens when you just feed it the video only. Open the AVI in vdub, go Audio->none, Video->direct stream copy, and hit File->Save AVI. Then load the resulting AVI in Premiere.
Code: Select all
assumeFPS(24)
You can always import the audio on its own, by saving it as a wav from virtualdub before making the lossless without audio.|Sangino| wrote:But what if I need audio?!I guess Pwolf's rate conversion to 24fps is the best solution!
Yes, that is correct.doescode in AviSynth make the frame rate 24fps?!Code: Select all
assumeFPS(24)
Or you could just use assumefps since the conversion between 23.976 and 24 isn't that significant.Pwolf wrote:assumefps preserves the frame count of the source without duplicating or removing frames. Basically, it will slow down or speed up the source based on the frame rate you supply. You want to use changefps. This will duplicate frames or remove them to match the given fps.