View Single Post
Old Oct 29th, 2007, 6:51 PM   #12
cloud-
Hobbyist Programmer
 
Join Date: Jan 2005
Posts: 110
Rep Power: 4 cloud- is on a distinguished road
Re: Someone with a good graphics card...?

Quote:
Originally Posted by mattireland View Post
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.

"in.avs" (opens with vdub) Syntax (Toggle Plain Text)
  1. clip1=avisource("some_random.avi", audio=false).Lanczos4Resize(640,480).ConvertToYUY2().ConvertFPS(23.976)
  2. clip2=avisource("different_clip.avi", audio=false).Lanczos4Resize(640,480).ConvertToYUY2().ConvertFPS(23.976)
  3. 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..
cloud- is offline   Reply With Quote