I’m trying to build this http://mo-de.net/d/comp3.png and I can’t seem to get the order and code correct.
I want to, import a video, overlay it, attach a mask to it and move it.
Code:h_mask=imagesource("C:\projects\Shawn_Hennesy_Project\comps\hmaskwhite.png", end=20, pixel_type = "RGB32").ConvertToRGB32 () the_interview=v1 orange_square=imagesource("C:\projects\Shawn_Hennesy_Project\comps\orange_h.png", pixel_type = "RGB32") title_shawn_henessy=imagesource("C:\projects\Shawn_Hennesy_Project\comps\title.png", end=200, pixel_type = "RGB32") logo = imagesource("C:\projects\Shawn_Hennesy_Project\comps\firebg.png", end=200, pixel_type = "RGB32").ConvertToRGB32 ().assumefps(v1) \.overlay (title_shawn_henessy, mode="blend", mask=title_shawn_henessy.ShowAlpha(pixel_type="RGB32"), x=0, y=0) \.overlay (orange_square, mode="blend", mask=orange_square.ShowAlpha(pixel_type="RGB32"), x=0, y=0) \.overlay( the_interview,x=447, y=242, mode="blend", mask=h_mask)#.BilinearResize(820,460) video_audio=the_interview.killvideo() mainbg = AudioDub(logo, video_audio) return mainbg
+ Reply to Thread
Results 1 to 2 of 2
-
-
[ SOLVED SOLUTION ] Make the make the same size as the imported movie resized.
The mask image dimension is 820 X 464.
Code:h_mask=imagesource("C:\projects\Shawn_Hennesy_Project\comps\hmaskwhite.png", end=20, pixel_type = "RGB32").ConvertToRGB32 ()
Code:the_interview=v1.BilinearResize(820,464)
Code:\.overlay( the_interview,x=447, y=242, mode="blend", mask=h_mask)
Similar Threads
-
HOW Merge a video mask green chroma with other video?
By wolfox in forum Video ConversionReplies: 1Last Post: 17th Sep 2012, 08:21 -
How to Attach Multiple Audio Streams To A Video Clip In Divx Author
By Lucie757 in forum AudioReplies: 0Last Post: 21st Nov 2010, 12:00 -
Looking for a filter to mask out white specs in video...
By Deter in forum RestorationReplies: 8Last Post: 2nd Aug 2010, 13:36 -
Overlay/Mask/Layer Question
By legocrazy1 in forum EditingReplies: 3Last Post: 16th Jul 2010, 04:00 -
how to increase/decrease and move a mask on a clip around(sony vegas)
By bojadada in forum EditingReplies: 4Last Post: 22nd Oct 2008, 22:38