View Full Version : How can I join still segments?


shorton
4th September 2005, 02:43
Hi guys:

With Mr. Wilbert's help I've been using a small script to create some segments form bmps:

ImageSource("test.bmp", end = 300, fps = 29.97) # RGB
ConvertToYV12(matrix="PC.601") # for QuEnc

I and running the avs file by opening it in QuEnc.

I have several clips, is there a way I can join them together in one complete m2v file?

Is there something I can add to my script to have it do more than one bmp at a time, each with 300 frames?

Thanks,
Scott

Guest
4th September 2005, 02:50
vid1=ImageSource("test1.bmp", end = 300, fps = 29.97) # RGB
vid2=ImageSource("test2.bmp", end = 300, fps = 29.97) # RGB
ConvertToYV12(vid1+vid2,matrix="PC.601") # for QuEnc

shorton
4th September 2005, 03:41
vid1=ImageSource("test1.bmp", end = 300, fps = 29.97) # RGB
vid2=ImageSource("test2.bmp", end = 300, fps = 29.97) # RGB
ConvertToYV12(vid1+vid2,matrix="PC.601") # for QuEnc
Sweeeeet. Thank you thank you thank you. :thanks: