I would like to slow an audio file I have down to 23.976 but have no idea how to use avisyth TimeStretch() command.... I found examples of speeding up.... But not slow down.... I want to go from 24.00 to 23.976 Can anyone show me how?
+ Reply to Thread
Results 1 to 3 of 3
-
-
I don't use AviSynth for such things, but I suppose you saw the page where they have this:
TimeStretch(tempo = 25.0/(24000.0/1001.0)*100.0)
This will change the tempo from Film speed to PAL speed without changing the pitch.
So, to slow it down I suppose you'd do it like this:
TimeStretch(tempo = (24000.0/1001.0)/24.0*100.0)
I have no idea why you might want to do this, though. If for DVD it's not necessary. -
If you're wanting to change the audio to match it up with an existing video it's probably better to change the video frame rate instead. That way there's no need to re-encode the audio and the frame rate can be changed without re-encoding.
Similar Threads
-
avisynth - How to write avisynth script for rgba overlay
By moelover in forum EditingReplies: 3Last Post: 13th Apr 2014, 12:24 -
Framerate conversion 23.976 to 24 avisynth
By joesphroth in forum Video ConversionReplies: 16Last Post: 8th Sep 2012, 21:25 -
24fps to 23.976?
By kkiller23 in forum Blu-ray RippingReplies: 4Last Post: 16th Jul 2012, 14:27 -
AVISYNTH: 23,976 (or 24p) --> 50i / what's a practical script?
By elmuz in forum Newbie / General discussionsReplies: 2Last Post: 22nd Feb 2011, 08:08 -
How do I timestretch 5.1 AC3
By jodal in forum AudioReplies: 7Last Post: 3rd Aug 2010, 05:48