Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 30th April 2023, 18:58   #741  |  Link
drunksunk
Registered User
 
Join Date: Apr 2023
Posts: 60
So I click the triangle and I see nothing: https://i.imgur.com/3Tni56q.png

Does anyone know which is the best command to remove the top right watermark on this video?
drunksunk is offline   Reply With Quote
Old 30th April 2023, 20:03   #742  |  Link
VoodooFX
Banana User
 
VoodooFX's Avatar
 
Join Date: Sep 2008
Posts: 920
Quote:
Originally Posted by drunksunk View Post
So I click the triangle and I see nothing: https://i.imgur.com/3Tni56q.png

Does anyone know which is the best command to remove the top right watermark on this video?
Not nothing, you can see version of Avisynth+ in the preview window at the bottom.
Add your video to the script to see your video.
Later I'll check your video.
VoodooFX is offline   Reply With Quote
Old 1st May 2023, 10:44   #743  |  Link
drunksunk
Registered User
 
Join Date: Apr 2023
Posts: 60
Quote:
Originally Posted by VoodooFX View Post
Not nothing, you can see version of Avisynth+ in the preview window at the bottom.
Add your video to the script to see your video.
Later I'll check your video.
Any update with the video?
drunksunk is offline   Reply With Quote
Old 1st May 2023, 13:07   #744  |  Link
VoodooFX
Banana User
 
VoodooFX's Avatar
 
Join Date: Sep 2008
Posts: 920
Quote:
Originally Posted by drunksunk View Post
Does anyone know which is the best command to remove the top right watermark on this video?
Why do you want to remove logos from some youtube gaming videos?

Quote:
Originally Posted by drunksunk View Post
Any update with the video?
Yes:

Code:
# Here you import your video:
LWLibAvVideoSource("D:\test4k.mp4")

# Here we crop black borders from video:
Crop(0,250,0,-250)

# Here I located logo coords [+20 pixels from logo edges]:
# Crop(3300,0,-240,-1466)

# Here we do delogo [first run with Automask=1 to get a basemask automatically, then set it to 0 to do analyze and delogo]
InpaintDelogo(Loc="3300,0,-240,-1466", mask="D:\mask.bmp", Automask=0, aMix=-2, NoBorderAt="top", AnalyzeTh=30, mode="Deblend", dPP=-5, Interp=3, Optimize2=2)
Before:


After:
VoodooFX is offline   Reply With Quote
Old 1st May 2023, 22:58   #745  |  Link
drunksunk
Registered User
 
Join Date: Apr 2023
Posts: 60
Any clue what are these errors I keep having whenever opening AvsPmod? https://i.imgur.com/0E3vuga.png

Anyway "mask file not found" obviously, how did you generate that?


And I'd like to suggest that you add all dependencies to your repo on GitHub, it took me some time after every restart to see the errors and add the extra plugins.
drunksunk is offline   Reply With Quote
Old 1st May 2023, 23:33   #746  |  Link
VoodooFX
Banana User
 
VoodooFX's Avatar
 
Join Date: Sep 2008
Posts: 920
Quote:
Originally Posted by drunksunk View Post
Any clue what are these errors I keep having whenever opening AvsPmod? https://i.imgur.com/0E3vuga.png
Ask in AvsPmod's thread.

Quote:
Originally Posted by drunksunk View Post
Anyway "mask file not found" obviously, how did you generate that?
Read my previous post.

Quote:
Originally Posted by drunksunk View Post
And I'd like to suggest that you add all dependencies to your repo on GitHub, it took me some time after every restart to see the errors and add the extra plugins.
All dependencies are posted there already.
VoodooFX is offline   Reply With Quote
Old 2nd May 2023, 01:22   #747  |  Link
RidgeShark
Registered Amatuer
 
Join Date: Feb 2007
Posts: 20
A bit late with this, but thank you VoodooFX!
RidgeShark is offline   Reply With Quote
Old 2nd May 2023, 01:25   #748  |  Link
drunksunk
Registered User
 
Join Date: Apr 2023
Posts: 60
First got error that it was missing, then I added the plugin but I get this: https://i.imgur.com/SLn2f8h.png
drunksunk is offline   Reply With Quote
Old 2nd May 2023, 01:35   #749  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,085
You can download FFTW-3.3.10-DLLs.rar here:
https://forum.doom9.net/showthread.p...37#post1965537

Copy and paste 32bit to SysWOW64, 64bit to System32
kedautinh12 is offline   Reply With Quote
Old 2nd May 2023, 01:43   #750  |  Link
drunksunk
Registered User
 
Join Date: Apr 2023
Posts: 60
Ok, now I can play the video with the changes, but it doesn't get exported.
drunksunk is offline   Reply With Quote
Old 2nd May 2023, 02:05   #751  |  Link
VoodooFX
Banana User
 
VoodooFX's Avatar
 
Join Date: Sep 2008
Posts: 920
Quote:
Originally Posted by drunksunk View Post
First got error that it was missing, then I added the plugin but I get this: https://i.imgur.com/SLn2f8h.png
That is Neo_FFT3D's dependency, and on its page clearly written what and how to install it.

Quote:
Originally Posted by drunksunk View Post
Ok, now I can play the video with the changes, but it doesn't get exported.
You meant encode. There are numerous tools to encode. Create another thread, ask there how to encode avs scripts.

Last edited by VoodooFX; 2nd May 2023 at 02:09.
VoodooFX is offline   Reply With Quote
Old 2nd May 2023, 02:14   #752  |  Link
drunksunk
Registered User
 
Join Date: Apr 2023
Posts: 60
Quote:
Originally Posted by VoodooFX View Post
That is Neo_FFT3D's dependency, and on its page clearly written what and how to install it.



You meant encode. There are numerous tools to encode. Create another thread, ask there how to encode avs scripts.
I don't get it. What's the point of InpaintDelogo if it doesn't export the result?
drunksunk is offline   Reply With Quote
Old 2nd May 2023, 02:21   #753  |  Link
VoodooFX
Banana User
 
VoodooFX's Avatar
 
Join Date: Sep 2008
Posts: 920
Quote:
Originally Posted by RidgeShark View Post
A bit late with this, but thank you VoodooFX!
You are welcome. I hope you redone the basemask you posted there, it was pretty bad.
Actually I still have those files, I didn't decided if it's worth to add that logo to the database. Did that company added that logo to all DVDs or just that one with trailers DVD?

Last edited by VoodooFX; 2nd May 2023 at 02:26.
VoodooFX is offline   Reply With Quote
Old 2nd May 2023, 02:52   #754  |  Link
VoodooFX
Banana User
 
VoodooFX's Avatar
 
Join Date: Sep 2008
Posts: 920
Quote:
Originally Posted by drunksunk View Post
I don't get it. What's the point of InpaintDelogo if it doesn't export the result?
What is the point of Notepad if you can't bake waffles with it?
VoodooFX is offline   Reply With Quote
Old 2nd May 2023, 09:24   #755  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,881
Which NotePad menu is the waffle maker on (or is it in NotePad++) ?

Does Notepad have a midge killer function ?

Man, I hate dat dem midge thingies, my forehead and back itchy like hell.
[been gettin' eaten alive, last couple of days].
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???
StainlessS is offline   Reply With Quote
Old 2nd May 2023, 13:11   #756  |  Link
lollo2
Registered User
 
lollo2's Avatar
 
Join Date: Aug 2017
Location: Italy
Posts: 93
Quote:
Originally Posted by drunksunk View Post
I don't get it. What's the point of InpaintDelogo if it doesn't export the result?
You are more and more boring. Learn AviSynth, how to install filters and their dependencies, and then you can blame for something.

Master VoodooFX You was far too kind with you!
__________________
A channel on S-VHS / VHS capture and AviSynth restoration https://www.youtube.com/channel/UCMs...h1MmNAs7I8nu4g
lollo2 is offline   Reply With Quote
Old 2nd May 2023, 13:51   #757  |  Link
kedautinh12
Registered User
 
Join Date: Jan 2018
Posts: 2,085
Yeah, VX very kine when explain him but he need learn avisynth basic
kedautinh12 is offline   Reply With Quote
Old 2nd May 2023, 15:09   #758  |  Link
VoodooFX
Banana User
 
VoodooFX's Avatar
 
Join Date: Sep 2008
Posts: 920
He needs time, wrapping your head around Avisynth is not a one day's task.

I remember my first time reading about Avisynth, my first impression was "WTF is this".
I think I started using it in early 2000s for VdubMod to import unsupported video formats.

Quote:
Originally Posted by StainlessS View Post
..midge..
I had to google this word.
VoodooFX is offline   Reply With Quote
Old 2nd May 2023, 23:53   #759  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,881
Quote:
I had to google this word
Sand fly, aka 'baby mosquito", oder, mosquito like, but smaller whotsit.

EDIT: Still not nice, but nobody died from midge bite, yet. (maybe Il'll be the 1st)
__________________
I sometimes post sober.
StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace

"Some infinities are bigger than other infinities", but how many of them are infinitely bigger ???

Last edited by StainlessS; 2nd May 2023 at 23:57.
StainlessS is offline   Reply With Quote
Old 5th May 2023, 01:37   #760  |  Link
drunksunk
Registered User
 
Join Date: Apr 2023
Posts: 60
Quote:
Originally Posted by drunksunk View Post
This is the result I obtained with HitPaw (it seems less noticeable): https://streamable.com/dexf0a

Regarding the tool, I don't know the installation procedure aside from having AviSynth installed on my computer. I don't know which paramaters of the command I would need to run then, how you get the square box pixel coordinates within your images, if you need to create a mask file of the part you want to remove and that's an alternative of using the pixel coordinates, etc.
I tried this but I get error "increase analyzeth" and i increase to 100 but nothing changed.

Quote:
InpaintDelogo(Loc="3020,450,-460,-1430", mask="D:\mask.bmp", Automask=1, aMix=-2, AnalyzeTh=100, mode="Deblend", dPP=-5, Interp=3, Optimize2=2)
drunksunk is offline   Reply With Quote
Reply

Tags
delogo, hardsubs, ocr, remove, watermark

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 23:50.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.