I have 2 flv files that plays with no problem when played individually. The code below was used to put both together.
The VirtualDub Mod was used to test the video and once it starts, the video plays 2x faster with no apparent reason, making the video and audio out of sync. Could someone tell what should i do make the video to play in its normal speed ?
avisynth code:
zep="C:\Video\test\file1.flv"
zep=directshowsource(zep,audio=false)
zep=crop(zep,20,24,-28,0)
concert="C:\Video\test\file2.flv"
concert=directshowsource(concert,audio=true)
concert=AddBorders(concert, 0,0,596,400)
Overlay(concert,zep,188)
+ Reply to Thread
Results 1 to 8 of 8
-
-
Add AssumeFPS(correct_fps) to your script. Substitute a numeric value for correct_fps. For example:
AssumeFPS(29.97)
The recent trend toward calling 30i 60i, and 25i 50i is creating confusion. -
very weird ... i changed the AssumeFPS parameter and it didn't work.
would be something related to the codec ? i have installed the klite mega code pack. -
Where did you add AssumeFPS()? Try changing the last line to:
Overlay(concert,zep,188).AssumeFPS(whatever) -
correct.... Overlay(concert,zep,188).AssumeFPS(8.00,true)
i used several combination of values and true/false... and didn't worked..... don't know why....... does anyone has any clue ? -
I don't see how it could not work.
You can change the source frame rate in VirtualDubMod. Go to Video -> Frame Rate... in the top section enable "Change to [8] frames per second." -
thank you ! i worked....
i also had to add convertfps=true to apply the fps i've located.
concert=directshowsource(concert,audio=true, fps=26.460, convertfps=true)
Similar Threads
-
Video posted on youtube plays much faster than original
By magg123 in forum Video Streaming DownloadingReplies: 1Last Post: 5th Sep 2011, 14:53 -
Virtualdub filters in avisynth-faster? How to use them?
By salidarius in forum EditingReplies: 10Last Post: 3rd Mar 2011, 21:13 -
avisynth - how to fade in (but audio has to fade in faster)
By adom in forum EditingReplies: 13Last Post: 31st Jan 2011, 12:45 -
movie plays right on pc,but faster in my ps3 help
By boltmccrash in forum Blu-ray RippingReplies: 0Last Post: 19th Oct 2010, 09:06 -
Windows Media Player: MPG playback bar moves faster than video plays
By Grunberg in forum Newbie / General discussionsReplies: 4Last Post: 15th Sep 2009, 04:07