I have a few videos less than 5 min in length. They have a cartoon network and boomerang logos on them. How do I remove them? John
+ Reply to Thread
Results 1 to 3 of 3
-
-
Blur them or blank them out. You can't completely eliminate them.
If they open in VirtualDub FilterMod, your could try it as it has lots of easy filters: http://www.infognition.com/VirtualDubFilters/ -
Virtualdub is definitely the best way as redwudz mentioned. It has many filters to get various results. If you are into ffmpeg/CLI you can also specify the areas and get good results also. The following is a scrap video and an arbitrary area as denoted in the delogo area. This image is just to help define the actual script shown later.
The script has show=1 to display the green boundary for example. It can be left off to eliminate.
Code:ffmpeg -i "C:\Users\Bud\Desktop\Various test Formats\[dp]Manjandani-1.mp4" -ss 00:00:00.000 -to 99:00:00.000 -vf delogo=x=100:y=50:w=80:h=30:band=4:show=1 -vcodec libx264 -crf 22 -r 23.976 -acodec aac -ac 2 -ar 44.1k -b:a 128k "C:\Users\Bud\Desktop\Various test Formats\[dp]Manjandani-1_Timed_1.mp4"
And the final result below.
Similar Threads
-
Remove Spoilers, Logos etc.
By illogical in forum User guidesReplies: 18Last Post: 17th Feb 2017, 08:25 -
Get rid of (I guess ) Logos
By RBCC in forum EditingReplies: 1Last Post: 17th Feb 2017, 02:57 -
Removing Logos using DeLogo vdub filter
By Matt D in forum EditingReplies: 67Last Post: 6th Apr 2016, 10:26 -
Add two logos at once with ffmpeg
By Basher06 in forum Newbie / General discussionsReplies: 3Last Post: 10th May 2015, 15:20 -
Removing logos with content-aware fill
By Mephesto in forum EditingReplies: 26Last Post: 6th Dec 2012, 14:09