digitalFAQ.com Forum

digitalFAQ.com Forum (https://www.digitalfaq.com/forum/)
-   Restore, Filter, Improve Quality (https://www.digitalfaq.com/forum/video-restore/)
-   -   Different types of noise removal for video? (https://www.digitalfaq.com/forum/video-restore/8785-different-types-noise.html)

sanlyn 10-15-2018 05:38 PM

Quote:

Originally Posted by yukukuhi (Post 56797)
there is a new error message:

Avisynth open failure:
Script error: there is no function named 'dctfilter'
(Deblock_QED.avsi, line 44)
(C:\Users\SGK\Desktop\chinnavar Movie Comedya1.avs, line 11)

http://avisynth.nl/index.php/DctFilter

yukukuhi 10-24-2018 11:56 AM

Ok but now I get a error like this:

Script error: invalid arguments to function deblock_qed.

It's the same script as in post 12 of this thread.

Please help.

sanlyn 10-24-2018 02:27 PM

The script in post #12 has multiple errors, mainly because you omitted all the punctuation between elements, so that RemoveSpotsMC and MDG2 are not applied to a, b, and c.

Code:

aud=NicMPG123Source("C:\Users\SGK\Desktop\Adithya TV Comedy Collection\"
  \+ "Chinnvar Movie Comedya PID 125 L2 2ch 48 256 DELAY 5ms.mp2",
  \normalize=false)

vid=MPEG2Source("C:\Users\SGK\Desktop\Adithya TV Comedy Collection\Chinnvar Movie Comedya.d2v")
AudioDub(vid,aud)

deblock_qed(last,quant1=28, quant2=32)

Source1=last
a=source1.SelectEvery(3,0).RemoveSpotsMC2().MDG2()
b=source1.SelectEvery(3,1).RemoveSpotsMC2().MDG2()
c=source1.SelectEvery(3,2).RemoveSpotsMC2().MDG2()
Interleave(a,b,c)
return last


yukukuhi 10-26-2018 07:34 AM

Ok I get that one, but to test out the deblock_qed filter I tried a simple script like below here:

Code:

MPEG2Source("C:\Users\SGK\Desktop\Adithya TV Comedy Collection\Chinnvar Movie Comedya.d2v")

deblock_qed(quant1=28, quant2=32)


Even for this basic script I'm getting the same invalid arguments to function deblock_qed error messeage. Please help.

sanlyn 10-26-2018 08:36 PM

I have no idea what's going on with your system. Deblock_QED has been around forever, with no problems, and is a component of several other plugins including MCTemporalDenoise. One of 'QED's support files is the original DeBlock, which is a stronger deblocker anyway.

Code:

DeBlock(quant=25, aOffset=8, bOffsert=8)
You should already have DeBlock.dll anyway. It's a DeBlock-QED requirement. http://avisynth.nl/index.php/DeBlock

sanlyn 10-27-2018 10:14 PM

Again, folks, it's time to correct my own dumb typos.

Quote:

Originally Posted by sanlyn (Post 57003)
Code:

DeBlock(quant=25, aOffset=8, bOffsert=8)

Above, the "b" Offset parameter is misspelled. Hope it didn't cause problems.

Correction:

Code:

DeBlock(quant=25, aOffset=8, bOffset=8)
:smack:


All times are GMT -5. The time now is 04:12 PM

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.