[BACK] [FORWARD] [Tutorial] [Table of Contents]


fadeOut


By using seq_map we apply seq_map on each image in a sequence with paramater that decreases over time. This operation cause the sequence to fade to black.

proc fadeOut {clip} {
	seq_map $clip {im_fade %1 [expr 1-%p]}
	}

To see original MPEG-sequence click on the left picture. To see the MPEG-sequence with fadeOut applied to it click on the right picture.

















[Top]