Citation :
background = BlankClip(length=1000, width=720, height=576, fps=25, color=$000000) clip = avisource("E:\Video\ExpoMJC2004.avi" ) clip = ReduceBy2(clip)
clip = crop(clip, 10, 10, -10, -10)
background = overlay(background,clip, x = 10 , y = 10 ) clip1 = avisource("E:\video\ExpoMJC.avi" ) clip1 = ReduceBy2( clip1)
clip1 = crop(clip1,10,10,-10,-10) background = overlay(background,clip1, x = 370 , y = 10 ) clip2 = avisource("E:\video\sglanime.avi" )
clip2 = ReduceBy2( clip2) clip2 = crop(clip2,10,10,-10,-10) background = overlay(background,clip2, x = 10 , y = 288 ) return background
|