| Re: Please help! Syncing audio video
If you can live with messing around with text files, have a look at AVISynth.
Basically, you'd write a text file something like this...
video=AVISource("yourvideo")
audio=WAVSource("youraudio")
delayaudio(audio,-0.5)
audiodub(video,audio)
... and save it as newfile.avs
You can then double click it to listen to it. You can delay the audio in either direction (if you need a 'negative' delay on the audio, it will insert black video frames). To avoid this, you can 'trim' the video first like so:-
video=AVISource("yourvideo")
audio=WAVSource("youraudio")
video=trim(video,100,0)
audiodub(video,audio)
(where 100 is 100 'frames' - substitute any suitable number)
Once you are happy with it, you should be able to encode and burn the resulting avs file using any standard tools.
Steve
|