I made a script a while ago and I had some slow motion stuff in it. I had this code to do it....
That was from a digital camera whose FPS was 25. The source of what I want to slow down now is 29.97 FPS.Code:somethingSlow = ResampleAudio(AssumeFPS(ConvertFPS(trim(whole,0,40),50),25,sync_audio=true),44100)
The following code works...
However, when I try to splice it with stuff that wasn't slowed down it fails saying that the frame rates differ.Code:slowstuff = ResampleAudio(AssumeFPS(ConvertFPS(somestuff,59.94),29.97,sync_audio=true),44100)
The above code is where the error is coming from.Code:UnalignedSplice(somestuff,slowstuff)
Anyone encounter this stuff before?
Any help is appreciated.
Thanks,
~Eric
+ Reply to Thread
Results 1 to 2 of 2
-
signatures are like underwear, you should change them once a month
-
Artanis in #avisynth on freenode IRC told me that 29.97 is really 30000/1001.
So using the optional denominator argument I was able to solve my problem.
Code:slowstuff = ResampleAudio(AssumeFPS(ConvertFPS(somestuff,60000,1001),30000,1001,sync_audio=true),44100)
signatures are like underwear, you should change them once a month
Similar Threads
-
Slow motion with ffmpeg?
By charlesdavison in forum ffmpegX general discussionReplies: 2Last Post: 31st Aug 2010, 09:07 -
Make slow-motion
By David_UK in forum Newbie / General discussionsReplies: 15Last Post: 28th Nov 2007, 00:44 -
Slow motion
By Pliny in forum MacReplies: 7Last Post: 7th Aug 2007, 00:02 -
Which casmeras are best for slow motion?
By Deathwish in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 16Last Post: 2nd Aug 2007, 23:04 -
Slow Motion
By sbuckmybballs in forum Newbie / General discussionsReplies: 6Last Post: 21st May 2007, 02:16