Back Forum Reply New

How to superimpose a picture .bmp?

Hi to all,
i have a clip say 100 frames, and i have a .bmp picture.
The clip and the picture have the same resolution.
How can i do superimpose the picture on frame number 50 (in other words replacing original frame n50 with the picture)?
Thank you all.

You could probably use Imagesource in some way. Something like:

Vid=Avisource(...)
Pic=Imagesource(...)
Trim(Vid,0,48)++Pic++Trim(Vid,50,99)

Then dub the audio in if necessary.

Mmm, very smart, i hadn't thought about this way
Thank you.

What If I want to apply filters to these two sources?

Vid=Avisource(...)
Pic=Imagesource(...)
some filter here()
some filter here()

Trim(Vid,0,48)++Pic++Trim(Vid,50,99)

Above script doesn't work, right? How would I change it? Thanks!!ps: I know Vid=Avisource(...).filter().filter() should also work, but don't think it would work if i had to apply serveral filters.

vid=avisource()
vid=vid.filter()
vid=vid.filter2()
etc.

Thank you, foxyshadis!! o(gt;_lt;)o
¥
Back Forum Reply New