Quote:
Originally Posted by mattireland
Can anyone else please help?
|
to join the video files together they must be the same size (frame), fps, etc, if you are using vdub, as in the guide posted previously, so it's likely that the videos differ somehow? I didn't check but if that's the case they would need to be re-encoded. alternatively you could use
avisynth, it's a "scripting" interface for dealing with video and audio, it allows you to "edit" the video before processing it with the main application (vdub)
an example of joining 2 videos together, with different fps/size etc.
clip1=avisource("some_random.avi", audio=false).Lanczos4Resize(640,480).ConvertToYUY2().ConvertFPS(23.976)
clip2=avisource("different_clip.avi", audio=false).Lanczos4Resize(640,480).ConvertToYUY2().ConvertFPS(23.976)
clip1++clip2
Though I'm not sure if this would cause audio skew (if fps was the case), you'd need to know how the clips differed, you could also just remove the audio like in the example and add that separately.
edit: using avs would need a re-encode too, so it's all the same in the end, i guess, just some time saved..