Hello,
Still stuck after some reading and trial & error..
I'm trying to change my 24 fps video source to 29.97 and sync the original audio track with it:
First I tried:
Video=mpeg2source("myVid.d2v",cpu=6)
Audio=WAVSource("myWav.wav")
AudioDub(Video,Audio)
assumeFps(29.97,sync_audio=true)
trim(0,400)
This works well but the audio is "sped up"
Then
Video=mpeg2source("myVid.d2v",cpu=6)
Audio=WAVSource("myWav.wav")
AudioDub(Video,Audio)
changefps(29.97)
trim(0,400)
The audio is out of sync by a second, how should I correct it to have the fps changed and audio at correct pace?
Thank you very much.









