Quantcast Avisynth: Remove Logo? - digitalFAQ.com Forums [Archives]
  #1  
05-14-2004, 05:58 AM
zagor zagor is offline
Free Member
 
Join Date: Feb 2004
Location: Italia
Posts: 226
Thanks: 0
Thanked 0 Times in 0 Posts
which is the best method in order to remove the logo of a television program?

naturally, explains it in simple way!

by
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
05-14-2004, 07:07 AM
Roc Roc is offline
Free Member
 
Join Date: Mar 2003
Location: Germany
Posts: 86
Thanks: 0
Thanked 0 Times in 0 Posts
I have made good experiences with xlogo

If the Logo partly overlaps into the border, i've used a litte skript:
Code:
LoadPlugin("d:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\MPEG2Dec3.dll") 
LoadPlugin("d:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\UnDot.dll") 
LoadPlugin("d:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\BlockBuster.dll") 
LoadPlugin("d:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\xlogo.dll") 
LoadPlugin("d:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\asharp.dll") 
#open Source 
clip=MPEG2Source("o:\24_2_15Uhr.d2v") 
wav=MPASource("o:\24_2_15Uhr MPA T01 DELAY -564ms.mpa") 
clip=AudioDub(clip,wav) 

#cut out commercials 
clip1=clip.trim(0,13672)+clip.trim(24046,36859)+clip.trim(37331,45804)+clip.trim(48497,61831)+clip.trim(62432,74910) 
clip=clip1 

#Denoise 
clip=clip.Undot() 
clip=clip.TemporalSoften(3,10,12,15,2) 
clip=clip.Asharp(1,3) 

# tricky Xlogo 
clip=clip.ConvertToRGB32 
mirr=clip.Crop(596,445,74,54) 
mirr=mirr.FlipVertical()    
clip=clip.Layer(mirr,"add",255,596,499,0,true) 
clip=clip.XLogo("o:\Logo_RTL2_x_606_y_455_2.bmp",606,455,0) 

# Blockbuster 
clip=clip.ConvertToYV12 
clip=clip.Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.3,seed=5823) 

#trim to 704x576 
clip=clip.Crop(8,72,704,428) 
clip=clip.AddBorders (0,74,0,74) 
clip=clip.letterbox(16,16,16,16) 
return (clip)
the "Logo_RTL2_x_606_y_455_2.bmp":

I have vertically reflected the range of the logo (and a little more around), which was in the picture, and inserted it into the black range below the logo.So no parts of the black border where blurred into the picture.

You can find a little (german) Workshop here:
http://home.t-online.de/home/vcdhilfe/html/ws_logo.htm
Reply With Quote
  #3  
10-19-2004, 12:23 PM
MrTibs MrTibs is offline
Free Member
 
Join Date: Aug 2002
Location: Canada
Posts: 200
Thanks: 0
Thanked 0 Times in 0 Posts
If the logo is semi-transparent you can try NoLogo. Pretty simle to use but takes some tweaking to get working. (http://www.kvcd.net/forum/viewtopic....ghlight=nologo)


If the logo is solid, MSU has some VDUB filters that seem to produce some impressive results:

http://compression.ru/video/subtitle.../index_en.html
Reply With Quote
  #4  
10-19-2004, 03:59 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
There is a "nologo" filter also in ffdshow now. If you want to try some parameters before to implement it into a script.
Reply With Quote
  #5  
10-19-2004, 05:14 PM
MrTibs MrTibs is offline
Free Member
 
Join Date: Aug 2002
Location: Canada
Posts: 200
Thanks: 0
Thanked 0 Times in 0 Posts
@Dialhot

I downloaded ffdshow from the project page but I cannot find any information about a logo filter. Could you provide a link?
Reply With Quote
  #6  
10-20-2004, 03:05 AM
incredible incredible is offline
Free Member
 
Join Date: May 2003
Location: Germany
Posts: 3,189
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to incredible
The Logoaway FIlter from ffdshow is a simple 1:1 port of Vdubs logoaway - easy to use and a simple anti-logo-interpolation, means qick'n dirty.

The Filters in ffdshow can be set in the decoding section. Or when doing encoding, then in the "input" section.

Reply With Quote
  #7  
07-03-2005, 09:19 PM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
how do you know if the msu logo remover has worked? I try to r=preview in v/dub after loading it and it still shows.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth: Remove Grain package Blubear Avisynth Scripting 2 04-30-2006 04:24 PM
cce logo on encoded videos? how to remove? mma01 Video Encoding and Conversion 2 04-06-2005 06:01 AM
Avisynth: Remove dirt? maninwales Avisynth Scripting 1 10-17-2004 03:20 PM
Avisynth: New Logo Removal filter MrTibs Avisynth Scripting 44 11-18-2003 03:44 PM
Avisynth: Help on choosing filters to reduce blocks and remove noise? yauman Avisynth Scripting 24 01-13-2003 06:28 AM

Thread Tools



 
All times are GMT -5. The time now is 03:19 AM  —  vBulletin © Jelsoft Enterprises Ltd