Can anybode tell me how to remove any logo using a AviSynth Script (from broadcast videos)?
I tried to use the VirtualDub-Plugin LogoAway.vdf but it doesn't work - I dont't know why !?![]()
I found the idea in an older thread https://www.videohelp.com/forum/viewtopic.php?t=155308 - but maybe there is any error in the script written there.
Can anybode tell me whats wrong in my script ?
Or any idea more ?
many Thanks for all Tips !!
# ===========================================
function logoaway(clip clip,int typ,int xp,int yp,int xs,int ys)
{
LoadVirtualdubPlugin("d:\logoaway.vdf", "_LogoAway")
border_X = xp
border_Y = yp
A = border_X*65536+border_Y
logosize_X = xs
logosize_Y = ys
B = logosize_X*65536+logosize_Y
upper_left = 0
upper_right = 1
down_right = 3
down_left = 2
t = 1*down_right + 256*down_left + 65536*upper_right + 16777216*upper_left
return clip._LogoAway(typ, A, B, 1, 0, 5, 0, t, 0,1, "", "")
}
# Main ==== Problem: !!! Invalid Arguments to function Logoaway Line 16 & 30 === ??? ==
xPos = 50
yPos = 100
xSize = 32
ySize = 32
video = "d:\Testvideo.avi"
withlogo = AviSource(video).ConvertToRGB()
nologo = logoaway( withlogo, 1, xPos, yPos, xSize, ySize)
return nologo
+ Reply to Thread
Results 1 to 1 of 1
Similar Threads
-
Remove Spoilers, Logos etc.
By illogical in forum User guidesReplies: 18Last Post: 17th Feb 2017, 08:25 -
Remove Logos
By Bob740 in forum Newbie / General discussionsReplies: 2Last Post: 9th Dec 2010, 12:19 -
Transparent logos, aegisub and AviSynth
By shorto in forum EditingReplies: 17Last Post: 20th Feb 2010, 19:35 -
easy way to remove alpha logos (with no opaque parts)
By dumbledore in forum EditingReplies: 1Last Post: 16th Feb 2010, 18:22 -
How to remove TV logos on a specified range? (15:22:10 to 15:23:20)
By BlooderButcher in forum EditingReplies: 3Last Post: 27th Jul 2007, 23:01