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 14th July 2024, 10:36   #341  |  Link
StvG
Registered User
 
Join Date: Jul 2018
Posts: 569
Quote:
Originally Posted by LouieChuckyMerry View Post
D'oh! And thank you very much for the effort, StvG, I really appreciate it. Two questions:

1) Any idea why I'm now receiving the KERNEL32.dll error in VD2, even with scripts that I know are (well, were) OK before I started playing with mlrt?

2) Any suggestion for a good DeBlock plugin-filter for AviSynth?

EDIT: And thanks for showing me Dependencies, it seems more straightforward to me than Dependency Walker.
1) Delete mlrt_ov.dll and it dependencies (all openvino runtimes). Delete mlrt_ort.dll and it dependencies (all onnxruntime files, directml eventually...).

2) The @Boulder suggestion (Deblock_QED) is popular and good. In addition to his suggestion about the Dogway collection there is a section External plugins->Deblocking on the front page of the wiki. Test the more popular filters and decide which fits best in your case.
StvG is offline   Reply With Quote
Old 14th July 2024, 19:09   #342  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 411
Quote:
Originally Posted by Boulder View Post
Dogway has a collection of deblockers in his script package. A simple (and fast) Deblock_QED might already be enough for most purposes.
https://forum.doom9.org/showthread.php?t=182881
Thanks, I'll try to get it working ASAP.


Quote:
Originally Posted by StvG View Post
1) Delete mlrt_ov.dll and it dependencies (all openvino runtimes). Delete mlrt_ort.dll and it dependencies (all onnxruntime files, directml eventually...).
Thanks, that did the trick.


Quote:
Originally Posted by StvG View Post
2) The @Boulder suggestion (Deblock_QED) is popular and good. In addition to his suggestion about the Dogway collection there is a section External plugins->Deblocking on the front page of the wiki. Test the more popular filters and decide which fits best in your case.
Thanks for the suggestions, and thanks again for all your help with mlrt .
LouieChuckyMerry is offline   Reply With Quote
Old 15th July 2024, 01:27   #343  |  Link
Guest
Guest
 
Posts: n/a
I thought I'd bump this up, as I haven't had any response, it's all been for Louie....Another W7 user....OMG.

I would appreciate some advice on trying to remove the "spots" & artifacts with this video.
https://www.mediafire.com/file/hz000.../spots.7z/file 142Mb
Regards
___________

Last edited by FTLOY; 15th July 2024 at 04:15. Reason: previous link wasn't working
  Reply With Quote
Old 16th July 2024, 19:57   #344  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 411
FTLOY: Here's my result with the following script at CRF20.0.

Code:
ConvertBits(Bits=16)
Deblock_QED()
SpotLess()
TemporalDegrain2()
CAS()
Neo_F3KDB(Y=100,Cb=100,Cr=100,GrainY=0,GrainC=0)
Any fine-tuning I leave to the experts ;-) .
LouieChuckyMerry is offline   Reply With Quote
Old 17th July 2024, 07:12   #345  |  Link
Guest
Guest
 
Posts: n/a
Quote:
Originally Posted by LouieChuckyMerry View Post
FTLOY: Here's my result with the following script at CRF20.0.

Code:
ConvertBits(Bits=16)
Deblock_QED()
SpotLess()
TemporalDegrain2()
CAS()
Neo_F3KDB(Y=100,Cb=100,Cr=100,GrainY=0,GrainC=0)
Any fine-tuning I leave to the experts ;-) .
Wow, that looks pretty damn good to my old eyes, thank you so much for taking the time to do that for me

There must be some dependencies to support that script ???

I can't get the same result you did, what app did you use ??

My scripts need to look like this for RipBot264, I've probably missed something, I haven't done much with scripts, for a while

Code:
SetCacheMode()
SetMemoryMax(20480)
LoadPlugin("%AVISYNTHPLUGINS%\PD_TOOLS\DCTFilter\DCTFilter.dll")
LoadPlugin("%AVISYNTHPLUGINS%\PD_TOOLS\Deblock\Deblock-x64.dll")
LoadPlugin("%AVISYNTHPLUGINS%\masktools\masktools2.dll")
LoadPlugin("%AVISYNTHPLUGINS%\CAS\CAS.dll")
LoadPlugin("%AVISYNTHPLUGINS%\PD_TOOLS\neo-f3kdb\neo-f3kdb.dll")
Import("%AVISYNTHPLUGINS%\PD_TOOLS\Deblock_QED\Deblock_QED_MT2Mod.avs")
Import("%AVISYNTHPLUGINS%\PD_TOOLS\SPOTLESS\Spotless newest.avs")
Import("%AVISYNTHPLUGINS%\PD_TOOLS\TemporalDegrain\TemporalDegrain2.avs")
video=ConvertBits(video,16)
video=Neo_F3KDB(video,Y=100,Cb=100,Cr=100,GrainY=0,GrainC=0)

Last edited by FTLOY; 17th July 2024 at 08:08.
  Reply With Quote
Old 18th July 2024, 00:32   #346  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 411
FTLOY: I use portable x64 MeGUI with the latest AviSynth+ (which autoloads most plugins-filters). As for dependencies, I use a search engine with "avisynth+ whateverplugin-filter" then head to the wiki or github page and reverse engineer it after reading the page (wiki) or readme (github) to learn the required dependencies, and if necessary I post here and plea for help from the geniuses. I'm a plodder, not a savant. Probably not the most efficient method, but it works for my limited knowledge of AviSynth.
LouieChuckyMerry is offline   Reply With Quote
Old 18th July 2024, 00:45   #347  |  Link
Guest
Guest
 
Posts: n/a
Quote:
Originally Posted by LouieChuckyMerry View Post
FTLOY: I use portable x64 MeGUI with the latest AviSynth+ (which autoloads most plugins-filters). As for dependencies, I use a search engine with "avisynth+ whateverplugin-filter" then head to the wiki or github page and reverse engineer it after reading the page (wiki) or readme (github) to learn the required dependencies, and if necessary I post here and plea for help from the geniuses. I'm a plodder, not a savant. Probably not the most efficient method, but it works for my limited knowledge of AviSynth.
Fair enough, whatever works for you that's good enough.

That script I posted actually works, but it doesn't get rid of the little black artifacts like your sample clip did, so not really sure, maybe I need to experiment with your app.
  Reply With Quote
Old 18th July 2024, 01:03   #348  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 411
The little black dots are what SpotLess removes. Maybe try the script

Code:
SpotLess()
and check the results, then dig deeper.
LouieChuckyMerry is offline   Reply With Quote
Old 18th July 2024, 02:39   #349  |  Link
Guest
Guest
 
Posts: n/a
Quote:
Originally Posted by LouieChuckyMerry View Post
The little black dots are what SpotLess removes. Maybe try the script

Code:
SpotLess()
and check the results, then dig deeper.
Thanks Louie, just running SpotLess(video) made all the difference, and default settings seems to be good enough.
  Reply With Quote
Old 1st April 2025, 01:58   #350  |  Link
Bluedraft
Registered User
 
Join Date: Jan 2015
Posts: 42
Remove very difficult spots

Hello, I'm trying to use spotless to clean some scenes but using it by default it ends affecting the image in some parts (it generate distortion in the image), I tried playing a little with some settings but couldn't get any better (probably because I not understand very well what I'm doing). I uploaded a sample of the scene, any help will be greatly appreciated.

Code:
 https://drive.google.com/file/d/1FQvveK0k9CdU9sf1FzyLwGiqcQQK8D4U/view?usp=sharing
Bluedraft is offline   Reply With Quote
Old 1st April 2025, 07:47   #351  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,164
If distortion is around the edges, try adding padding of maybe 8 or 16 around distorted edges (before call to Spotless).
Padding()
http://forum.doom9.org/showthread.ph...04#post1596804
Then chop (crop) it off afterwards.
__________________
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 April 2025, 01:35   #352  |  Link
Bluedraft
Registered User
 
Join Date: Jan 2015
Posts: 42
Hello StainlessS, the distortion appears throughout the whole image, see

Before Spotless


After Spoless
Bluedraft is offline   Reply With Quote
Old 2nd April 2025, 12:14   #353  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,164
Try take a look at JohnMeyer post #20 for tips.

I think that there was some kind of mod of Spotless which tried to restore some removed spots, I've spent about an hour looking for it but cant find it.
Maybe somebody knows what I was looking for.
__________________
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 April 2025, 15:38   #354  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,632
Quote:
Maybe somebody knows what I was looking for.
You probably looking for: https://forum.doom9.org/showthread.php?t=182831 (SpotLess + DeltaRestore)

Cu Selur

Ps.: DeSpot, with tweaked settings, might be the better filter for such a source.
__________________
Hybrid here in the forum, homepage, its own forum

Last edited by Selur; 2nd April 2025 at 15:47.
Selur is offline   Reply With Quote
Old 2nd April 2025, 20:39   #355  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 11,164
Thanks Selur, that looks to be what I was looking for.
Have added links at head of Spotless thread to that thread + SpotRemover
[film transfer] Remove dirt but keep grain? :- https://forum.doom9.org/showthread.php?t=182831
SpotRemover - clean video from spots:- https://forum.doom9.org/showthread.php?t=182407
__________________
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 April 2025 at 20:52.
StainlessS is offline   Reply With Quote
Old 19th April 2025, 02:11   #356  |  Link
coolgit
Registered User
 
Join Date: Apr 2019
Posts: 246
Quote:
Originally Posted by Bluedraft View Post
Hello, I'm trying to use spotless to clean some scenes but using it by default it ends affecting the image in some parts (it generate distortion in the image), I tried playing a little with some settings but couldn't get any better (probably because I not understand very well what I'm doing). I uploaded a sample of the scene, any help will be greatly appreciated.

Code:
 https://drive.google.com/file/d/1FQvveK0k9CdU9sf1FzyLwGiqcQQK8D4U/view?usp=sharing
This is my standard to go for removing defects and keeping the quality intact. ThSAD should go no higher than 2000. Any more the image gets distorted. In some case i run spotless twice which is better than increasing ThSAD.

Code:
SpotLess(BlkSz=12, OLap=8/2, pel=2, Tm=false, Bblur=0.0, ThSAD=1000, RadT=1)
coolgit is offline   Reply With Quote
Reply

Tags
denoise, despot, prefilter

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 15:14.


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