Log in

View Full Version : adding black frames at the end of the movie


numlock
25th January 2005, 04:04
I have a problem with fadeout2() function. When I play the movie in a standard DVD player it stops in the middle of fading out and it never get black and then the movie stops like that

I need to add about 30-60 black frames at the end of all my movies

I use a script similar to this:

avisource(...)
various filters
fadeout2()

and I need something like addblackframes(30) at the end of the script

how would I go about doing this ?

TIA

stickboy
25th January 2005, 04:19
AVISource(...)
# various filters
FadeOut2(...)
last ++ last.Blackness(30)
Edit: Script fixed.

numlock
25th January 2005, 05:10
thanks a lot. This is exactly what I need