adrianmak
29th July 2006, 01:45
I have a two video say video_a, video_b (same fps)
I use vdm to cut into two parts of the two video
video_a = [parta][partb], and extract only part a
video_b = [parta][partb], and extract only part b
then I use a avs script to join parta of video_a and partb of video_b
my script is as follows
a=avisource("parta.avi",audio=false)
b=avisource("partb.avi",audio=false)
c=a+b
return c
and ouput final_video.avi
after that I use a program that which can join two mp3 as one
I joined parta's video_a mp3 and partb's video_b mp3 as one mp3 say final_audio.mp3
Finally, I use vdm again to mux the final_video.avi and the final_audio.mp3
however the audio of result video is not sync with the video
how do I set a delay of the mp3 when muxing video and audio ?
I use vdm to cut into two parts of the two video
video_a = [parta][partb], and extract only part a
video_b = [parta][partb], and extract only part b
then I use a avs script to join parta of video_a and partb of video_b
my script is as follows
a=avisource("parta.avi",audio=false)
b=avisource("partb.avi",audio=false)
c=a+b
return c
and ouput final_video.avi
after that I use a program that which can join two mp3 as one
I joined parta's video_a mp3 and partb's video_b mp3 as one mp3 say final_audio.mp3
Finally, I use vdm again to mux the final_video.avi and the final_audio.mp3
however the audio of result video is not sync with the video
how do I set a delay of the mp3 when muxing video and audio ?