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: 494
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: 402
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
FTLOY
Friend of a friend..
 
FTLOY's Avatar
 
Join Date: Feb 2023
Posts: 400
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
___________
__________________
RipBot264 v1.27.3 (08-06-24)

Last edited by FTLOY; 15th July 2024 at 04:15. Reason: previous link wasn't working
FTLOY is offline   Reply With Quote
Old 16th July 2024, 19:57   #344  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 402
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
FTLOY
Friend of a friend..
 
FTLOY's Avatar
 
Join Date: Feb 2023
Posts: 400
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)
__________________
RipBot264 v1.27.3 (08-06-24)

Last edited by FTLOY; 17th July 2024 at 08:08.
FTLOY is offline   Reply With Quote
Old 18th July 2024, 00:32   #346  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 402
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
FTLOY
Friend of a friend..
 
FTLOY's Avatar
 
Join Date: Feb 2023
Posts: 400
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.
__________________
RipBot264 v1.27.3 (08-06-24)
FTLOY is offline   Reply With Quote
Old 18th July 2024, 01:03   #348  |  Link
LouieChuckyMerry
Registered User
 
LouieChuckyMerry's Avatar
 
Join Date: Feb 2014
Posts: 402
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
FTLOY
Friend of a friend..
 
FTLOY's Avatar
 
Join Date: Feb 2023
Posts: 400
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.
__________________
RipBot264 v1.27.3 (08-06-24)
FTLOY 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 00:54.


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