Hello.
I'm planing to do a video which will need I superpose many images at different timeframes.
For exemple, showing an image during frames 100 to 200, and an another image during frames 150 to 280 etc.
I've heard that the best way to do that would be to use Avisynth, so I read a tutorial, did a bit of research and a few tests, and I managed to do that :
The problem is I didn't find how to display an image for a given period. I thought trim would work but I didn't find a way to make it work. (and could it work since some images will show up in the same frames?)
Also, wouldn't adding a lot of "bg = ..." make the encode really long?
Thanks in advance. :)
I'm planing to do a video which will need I superpose many images at different timeframes.
For exemple, showing an image during frames 100 to 200, and an another image during frames 150 to 280 etc.
I've heard that the best way to do that would be to use Avisynth, so I read a tutorial, did a bit of research and a few tests, and I managed to do that :
Code:
bg = BlankClip(length=3000, width=720, height=576, fps=30, color=$000000)
bg = Overlay(bg, ImageSource("image1.png"), 10, 10)
bg = Overlay(bg, ImageSource("image7.png"), 10, 30)
Overlay(bg, ImageSource("image4.png"), 30, 10)
Also, wouldn't adding a lot of "bg = ..." make the encode really long?
Thanks in advance. :)