View Full Version : How to superimpose a picture .bmp?
3ngel
13th March 2006, 17:00
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.
Mr_Odwin
13th March 2006, 18:51
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.
3ngel
13th March 2006, 20:24
Mmm, very smart, i hadn't thought about this way :)
Thank you.
HOLiC
15th March 2006, 04:33
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.
foxyshadis
15th March 2006, 09:43
vid=avisource()
vid=vid.filter()
vid=vid.filter2()
etc.
HOLiC
15th March 2006, 09:56
Thank you, foxyshadis!! o(>_<)o
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.