Log in

View Full Version : Bringing in multiple single pictures


wayback
30th June 2009, 23:11
I'm trying to assemble a video using VirtualDubMod, and it should begin with a series of three individual title frames, each of which needs to last for 5 seconds. The frames are .bmp files.

I have been able to bring in the first bmp, copy it, then duplicate it with CTL-V for 150 frames. I also found a way to do this using Avisynth using ImageSource.

But in both cases, I can't do anything after that. The "append segment" option is greyed out, and I don't see any way to append the second bmp file beginning at frame 151. I tried making separate .avs files for each bmp, but when I still can't append. Then I tried having a separate ImageSource line for each bmp within the avs file, but only the last one ends up in VDMod.

Am I missing the magic decoder ring to do this, or am I going to have to make individual 5-second video segments from each of the frames? I assume I could append those.

Keiyakusha
30th June 2009, 23:36
Is this what you want?
a=ImageSource("1.png",end=150,fps=30)
b=ImageSource("2.png",end=149,fps=30)
c=ImageSource("3.png",end=149,fps=30)
a+b+c

wayback
1st July 2009, 03:10
Yes. Thanks very much.