Well...Recently I have found a very cutie picture which I wanna use as the logo for the video I encode so that I could share with somebody else. However, I am not really good at scripting, so I am just wondering what I gotta do esp what is the script for it which can allow me to set position where the picture can be situated. I know it would be fairly easy to some of you already.
I don't know where I found the script but here is the user-defined function
What I want is an animated logo running from the end of the right and then towards the end of the left of the video along with some texts next to it and then fade away. Is it possible to do that? Hope you guys could help me out.Code:function insertsign(clip mainclip, clip overlayclip, int startframe, int "endframe") { endframe = default(endframe,startframe+overlayclip.framecount()-1) endframe = (endframe == 0) ? startframe+overlayclip.framecount()-1 : endframe endframe = (endframe >= mainclip.framecount()-1) ? mainclip.framecount()-1 : endframe begin = (startframe == 1) ? mainclip.trim(0,-1) : mainclip.trim(0,startframe-1) middle = mainclip.trim(startframe,endframe) end = (endframe == mainclip.framecount()-1) ? blankclip(mainclip,length=0) : mainclip.trim(endframe+1,0) middleoverlay = Overlay(middle, overlayclip, mask=overlayclip.showalpha()) final = (startframe == 0) ? middleoverlay ++ end : begin ++ middleoverlay ++ end return final }
+ Reply to Thread
Results 1 to 1 of 1
-
kenryuakuma always need your help
Similar Threads
-
Adding Overlay Or Logo
By blazin-j in forum Newbie / General discussionsReplies: 2Last Post: 28th Nov 2008, 13:38 -
Adding animated logo to an avi file
By andy_blah in forum EditingReplies: 17Last Post: 27th Aug 2008, 21:03 -
Adding Logo's in FCP
By James in HD in forum MacReplies: 11Last Post: 13th Jan 2008, 20:28 -
Adding logo
By shashidar in forum EditingReplies: 2Last Post: 10th Jan 2008, 18:39 -
adding logo/watermark using tmpgenc
By Bytez in forum Newbie / General discussionsReplies: 2Last Post: 24th Aug 2007, 15:25