Hello,
Ok, first of all i have to video files the 1st have 25 fps and the 2nd have 23.976. I want to merge the audio from the 1st video file with the video from the 2nd video file. How ?!
What happen if i simply change the frame rate of the 2nd video file to 25 fps...?!
Regards,
SB4
+ Reply to Thread
Results 1 to 9 of 9
-
-
-
To convert 23.976 fps to 25:
Code:AssumeFPS(25, sync_audio=true)
Code:AssumeFPS("ntsc_film", sync_audio=true)
Assuming that they are exactly the same, except for FPS, you could do:
Code:AVISource("vidNTSC.avi") AudioDub(AVISource("vidPAL.avi").AssumeFPS("ntsc_film", sync_audio=true))
But if it doesn't match then maybe use an audio editor like Audacity and load the original and new tracks and adjust the new to sync visually, then delete the old track and save the adjusted new one. -
Ok, When i used this method the video frame rate set to 25 fps with 29 minutes but When i convert the same video to 25 fps using VirtualDub it have 27 minutes. Why is that ?!
-
RTFM: http://manual.audacityteam.org/man/Quick_Help
I guess it's using a different method, perhaps interpolating or duping frames to keep the original duration.
Look at the total number of frames.
Using AssumeFPS, the number of frames is unchanged, but if frames have been added there will be more, you may see one dupe per second.
You can use different methods in Avisynth too. See http://avisynth.org/mediawiki/FPS
ChangeFPS will keep the same duration by adding or deleting frames.
Similar Threads
-
MeGUI/AviSynth automatically changing frame rate to 17.843
By Hakuromatsu in forum Video ConversionReplies: 9Last Post: 14th Jun 2013, 01:48 -
Changing audio frame rate?
By architectofpain in forum AudioReplies: 22Last Post: 5th Apr 2013, 10:27 -
Changing aspect and frame rate of video in linux
By oldmanfilm in forum Newbie / General discussionsReplies: 4Last Post: 4th May 2012, 02:23 -
Changing DVD Frame rate
By ArtOfLosingMFZB in forum Newbie / General discussionsReplies: 7Last Post: 28th Dec 2011, 19:58 -
Does changing frame rate make audio out of sync?
By aznbennet in forum AudioReplies: 2Last Post: 11th Sep 2011, 02:32