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 16th November 2019, 00:28   #761  |  Link
manono
Moderator
 
Join Date: Oct 2001
Location: Hawaii
Posts: 7,406
Quote:
Originally Posted by Diamenz View Post
this confuses me because i was under the impression that the 'slower' preset uses the 'dfttest' filter as opposed to the lower quality 'fft3dfilter' and it shouldn't even be called upon.
Can you back that up in the documentation? Because it seems to me the FFT3DFilter is used unless you specifically choose to use DFTTest:

Quote:
Denoiser (string) Select denoiser to use for noise bypass / denoising. Select from "dfttest" or "fft3dfilter". dfttest is better, but slower. Unknown value selects "fft3dfilter". Default: fft3dfilter
http://avisynth.nl/index.php/QTGMC#Core_Settings
manono is offline   Reply With Quote
Old 16th November 2019, 00:38   #762  |  Link
Diamenz
Registered User
 
Join Date: Jan 2006
Posts: 9
Quote:
Originally Posted by manono View Post
Can you back that up in the documentation? Because it seems to me the FFT3DFilter is used unless you specifically choose to use DFTTest:



http://avisynth.nl/index.php/QTGMC#Core_Settings
i went off of what post#5 in this thread told me, here.

Quote:
# Noise presets Slower Slow Medium Fast Faster
Denoiser = default( Denoiser, Select( npNum, "dfttest", "dfttest", "dfttest", "fft3df", "fft3df" ) )
DenoiseMC = default( DenoiseMC, Select( npNum, true, true, false, false, false ) )
NoiseTR = default( NoiseTR, Select( npNum, 2, 1, 1, 1, 0 ) )
NoiseDeint = default( NoiseDeint, Select( npNum, "Generate","Bob", "", "", "" ) )
StabilizeNoise = default( StabilizeNoise, Select( npNum, true, true, true, false, false ) )
^that quote copy/pasted really bad so you're better off going to the post and navigating to the line "# Noise presets" closer to the bottom. it is an old post, but i just went with it because frankly i don't know jack about all of this. i learned what i have from a youtube tutorial and some reading on google.
Diamenz is offline   Reply With Quote
Old 16th November 2019, 01:20   #763  |  Link
Diamenz
Registered User
 
Join Date: Jan 2006
Posts: 9
i installed both dfttest filter, along with addgrainc and now get a working preview with:

QTGMC(Preset="Slower", MatchPreset="Slower", MatchPreset2="Slower", SourceMatch=3, Lossless=2, TR2=1, Denoiser="dfttest", NoiseProcess=2, NoiseDeint="Generate", Edithreads=4)

but it's very, very dark as if the black levels were crushed to crap.

...i THINK i installed addgrainc correctly - all i did was copy paste the dll, but i wasn't sure what i should do with the avs file included in the zip.

Last edited by Diamenz; 16th November 2019 at 01:23.
Diamenz is offline   Reply With Quote
Old 16th November 2019, 01:22   #764  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,346
@Diamenz -



preset="blah", and noisepreset="blah" are 2 different switches . It's in the documentation

Quote:
Denoiser, DenoiseMC, NoiseTR, NoiseDeint and StabilizeNoise settings are determined by NoisePreset
Add noisepreset="slower", or you can explicitly use Denoiser="dfttest"

You can use showsettings=true, to overlay what settings are being passed



If you have wrong levels, usually it's some mismatch of newer script version and older plugins or vice-versa
poisondeathray is offline   Reply With Quote
Old 16th November 2019, 06:04   #765  |  Link
real.finder
Registered User
 
Join Date: Jan 2012
Location: Mesopotamia
Posts: 2,587
Quote:
Originally Posted by Diamenz View Post
i installed both dfttest filter, along with addgrainc and now get a working preview with:

QTGMC(Preset="Slower", MatchPreset="Slower", MatchPreset2="Slower", SourceMatch=3, Lossless=2, TR2=1, Denoiser="dfttest", NoiseProcess=2, NoiseDeint="Generate", Edithreads=4)

but it's very, very dark as if the black levels were crushed to crap.

...i THINK i installed addgrainc correctly - all i did was copy paste the dll, but i wasn't sure what i should do with the avs file included in the zip.
what avisynth you use? with

Code:
ColorBars(width=640, height=480, pixel_type="yv12")
 QTGMC(Preset="Slower", MatchPreset="Slower", MatchPreset2="Slower", SourceMatch=3, Lossless=2, TR2=1, Denoiser="dfttest", NoiseProcess=2, NoiseDeint="Generate", Edithreads=4)
in avs 2.6 last MT by SEt it crashed with C++ error! but work fine in last avs+
__________________
See My Avisynth Stuff

Last edited by real.finder; 16th November 2019 at 06:07.
real.finder is offline   Reply With Quote
Old 17th November 2019, 01:57   #766  |  Link
Diamenz
Registered User
 
Join Date: Jan 2006
Posts: 9
thanks, everyone for ur input. i've decided to just go with the basic settings and not dive too far into the advanced stuff. the 'slower' preset along with source match & lossless r giving me great results.
Diamenz is offline   Reply With Quote
Old 2nd December 2019, 22:46   #767  |  Link
CMGTQ
Registered User
 
Join Date: Nov 2019
Posts: 2
Hello, I'm having trouble with the Very Slow and Placebo settings in QTGMC. Whenever I select them, it seems only the chroma channel is processed, luma is not included, whereas with all other settings from Slower and above, it works as intended. Am I missing anything vital in the script or a filter? Thank you.

CMGTQ is offline   Reply With Quote
Old 7th January 2020, 20:48   #768  |  Link
Trixter
Registered User
 
Join Date: Oct 2003
Posts: 209
YUV422P10 not a supported colorspace?

I'm unable to process 10-bit video with avisynth+ v3.4.0 and QTGMC v3.358s because masktools2 v2.2.18 is throwing an unsupported colorspace error: "mt_makediff: unsupported colorspace, masktools only support planar YUV colorspace (YV12, YV16, YV24)"

My source is a v210 source opened via ffms2, and info() reports a YUV422P10 colorspace after opening. Is this not a supported planar colorspace for this combination? If not, what would be a good conversion workflow that would preserve high bit depth content, processed by QTGMC?

Script is very simple:

Code:
SetMemoryMax(512)
SetFilterMTMode("QTGMC", 2)

X = "finished 10-bit.avi"
A = FFAudioSource(X)
V = FFVideoSource(X)
AudioDub(V, A)
# produces YUV422P10 after loading, verified with info()

assumeBFF()

# crop to visible picture area, and also convert 486 lines to 480
crop(8,4,704,480)

QTGMC(Preset="slower", EdiThreads=4)

prefetch(6)
Trixter is offline   Reply With Quote
Old 7th January 2020, 22:17   #769  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,346
Quote:
Originally Posted by Trixter View Post
I'm unable to process 10-bit video with avisynth+ v3.4.0 and QTGMC v3.358s because masktools2 v2.2.18 is throwing an unsupported colorspace error: "mt_makediff: unsupported colorspace, masktools only support planar YUV colorspace (YV12, YV16, YV24)"

My source is a v210 source opened via ffms2, and info() reports a YUV422P10 colorspace after opening. Is this not a supported planar colorspace for this combination? If not, what would be a good conversion workflow that would preserve high bit depth content, processed by QTGMC?

Works ok for me with v210

Im guessing you probably need newer QTGMC version 3.361s or newer for newer masktools


Quote:
# --- LATEST CHANGES ---
#
# v3.361s
# - update to masktools 2.2.17, use expr in avs+ (for speed up and less RAM usage)

Here
https://forum.doom9.org/showthread.php?p=1836519=510

Last edited by poisondeathray; 7th January 2020 at 22:22.
poisondeathray is offline   Reply With Quote
Old 8th January 2020, 03:14   #770  |  Link
Trixter
Registered User
 
Join Date: Oct 2003
Posts: 209
I've updated to v3.361s, and updated all of the core plugins that are dependencies, but I'm still getting the same error. (I got different errors throughout updating plugins, but I'm back to the same error.) Is there a "qtgmc plugin pack/distro" I should be using, rather than trying to track everything down?

I've reproduced an avsmeter dump; can anyone see anything wrong? @poisondeathray, could you produce your "avsmeter avsinfo" so I can compare with your working configuration?

Code:
VersionString:              AviSynth+ 3.4 (r2923, 3.4, i386)
VersionNumber:              2.60
File / Product version:     3.4.0.0 / 3.4.0.0
Interface Version:          6
Multi-threading support:    Yes
Avisynth.dll location:      C:\WINDOWS\SysWOW64\avisynth.dll
Avisynth.dll time stamp:    2019-10-20, 17:25:02 (UTC)
PluginDir2_5 (HKLM, x86):   C:\Program Files (x86)\AviSynth+\plugins
PluginDir+   (HKLM, x86):   C:\Program Files (x86)\AviSynth+\plugins+


[C 2.5 Plugins (32 Bit)]  [Version, Time stamp]
C:\Program Files (x86)\AviSynth+\plugins\AVSInpaint.dll  [x.x.x.x, 2008-02-23]
C:\Program Files (x86)\AviSynth+\plugins\yadif.dll  [1.7.0.0, 2009-10-08]

[CPP 2.5 Plugins (32 Bit)]  [Version, Time stamp]
C:\Program Files (x86)\AviSynth+\plugins\AddGrainC.dll  [1.5.0.0, 2010-05-13]
C:\Program Files (x86)\AviSynth+\plugins\AutoCrop.dll  [x.x.x.x, 2005-01-03]
C:\Program Files (x86)\AviSynth+\plugins\Average.dll  [x.x.x.x, 2007-12-16]
C:\Program Files (x86)\AviSynth+\plugins\avssr.dll  [x.x.x.x, 2014-01-09]
C:\Program Files (x86)\AviSynth+\plugins\ColorLooks.dll  [x.x.x.x, 2017-08-03]
C:\Program Files (x86)\AviSynth+\plugins\Decomb.dll  [x.x.x.x, 2008-06-14]
C:\Program Files (x86)\AviSynth+\plugins\degrainmedian.dll  [0.8.2.0, 2006-10-08]
C:\Program Files (x86)\AviSynth+\plugins\dfttest.dll  [1.8.0.0, 2010-06-22]
C:\Program Files (x86)\AviSynth+\plugins\EEDI2.dll  [0.9.2.0, 2006-06-07]
C:\Program Files (x86)\AviSynth+\plugins\eedi3.dll  [0.9.1.0, 2010-07-23]
C:\Program Files (x86)\AviSynth+\plugins\exinpaint.dll  [0.2.0.0, 2008-01-30]
C:\Program Files (x86)\AviSynth+\plugins\FDecimate.dll  [x.x.x.x, 2008-07-03]
C:\Program Files (x86)\AviSynth+\plugins\FFT3DFilter.dll  [2.1.1.0, 2007-02-20]
C:\Program Files (x86)\AviSynth+\plugins\GetSystemEnv.dll  [x.x.x.x, 2008-06-09]
C:\Program Files (x86)\AviSynth+\plugins\Motion_12Dec05.dll  [x.x.x.x, 2005-12-12]
C:\Program Files (x86)\AviSynth+\plugins\MT.dll  [0.7.0.0, 2009-06-30]
C:\Program Files (x86)\AviSynth+\plugins\mt_masktools-25.dll  [2.0.48.0, 2010-12-31]
C:\Program Files (x86)\AviSynth+\plugins\nnedi.dll  [1.3.0.0, 2007-09-20]
C:\Program Files (x86)\AviSynth+\plugins\nnedi2.dll  [1.6.0.0, 2010-07-23]
C:\Program Files (x86)\AviSynth+\plugins\PointSize.dll  [x.x.x.x, 2010-05-19]
C:\Program Files (x86)\AviSynth+\plugins\ReInterpolate411.dll  [0.1.1.0, 2003-08-01]
C:\Program Files (x86)\AviSynth+\plugins\RemoveGrain.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RemoveGrainS.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RemoveGrainSSE2.dll  [x.x.x.x, 2005-08-01]
C:\Program Files (x86)\AviSynth+\plugins\RemoveGrainSSE3.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\Repair.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RepairS.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RepairSSE2.dll  [x.x.x.x, 2005-08-01]
C:\Program Files (x86)\AviSynth+\plugins\RepairSSE3.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RSharpen.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RSharpenS.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RSharpenSSE2.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RSharpenSSE3.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\SSE2Tools.dll  [x.x.x.x, 2005-04-11]
C:\Program Files (x86)\AviSynth+\plugins\svpflow1.dll  [1.3.5.0, 2014-03-11]
C:\Program Files (x86)\AviSynth+\plugins\svpflow2.dll  [1.5.8.0, 2014-05-03]
C:\Program Files (x86)\AviSynth+\plugins\TDeint.dll  [1.1.0.0, 2007-01-22]
C:\Program Files (x86)\AviSynth+\plugins\TTempSmooth.dll  [0.9.4.0, 2005-11-18]
C:\Program Files (x86)\AviSynth+\plugins\VerticalCleanerSSE2.dll  [x.x.x.x, 2008-02-28]
C:\Program Files (x86)\AviSynth+\plugins\yadifmod.dll  [1.0.0.0, 2007-09-15]

[CPP 2.6 Plugins (32 Bit)]  [Version, Time stamp]
C:\Program Files (x86)\AviSynth+\plugins+\ConvertStacked.dll  [x.x.x.x, 2019-10-20]
C:\Program Files (x86)\AviSynth+\plugins+\DirectShowSource.dll  [x.x.x.x, 2019-10-20]
C:\Program Files (x86)\AviSynth+\plugins+\ImageSeq.dll  [x.x.x.x, 2019-10-20]
C:\Program Files (x86)\AviSynth+\plugins+\Shibatch.dll  [x.x.x.x, 2019-10-20]
C:\Program Files (x86)\AviSynth+\plugins+\TimeStretch.dll  [x.x.x.x, 2019-10-20]
C:\Program Files (x86)\AviSynth+\plugins+\VDubFilter.dll  [x.x.x.x, 2019-10-20]
C:\Program Files (x86)\AviSynth+\plugins\DePan.dll  [2.13.1.4, 2019-05-02]
C:\Program Files (x86)\AviSynth+\plugins\DePanEstimate.dll  [2.10.0.3, 2019-05-02]
C:\Program Files (x86)\AviSynth+\plugins\DirectShowSource.dll  [2.6.0.3, 2015-04-19]
C:\Program Files (x86)\AviSynth+\plugins\ffms2.dll  [x.x.x.x, 2016-12-29]
C:\Program Files (x86)\AviSynth+\plugins\KNLMeansCL.dll  [x.x.x.x, 2016-04-11]
C:\Program Files (x86)\AviSynth+\plugins\masktools2.dll  [2.2.18.0, 2018-09-05]
C:\Program Files (x86)\AviSynth+\plugins\MedianBlur2.dll  [x.x.x.x, 2014-02-10]
C:\Program Files (x86)\AviSynth+\plugins\mvtools2.dll  [2.7.41.0, 2019-05-02]
C:\Program Files (x86)\AviSynth+\plugins\nnedi3.dll  [0.9.4.53, 2019-06-06]
C:\Program Files (x86)\AviSynth+\plugins\RgTools.dll  [x.x.x.x, 2014-02-12]
C:\Program Files (x86)\AviSynth+\plugins\TCPDeliver.dll  [2.6.0.7, 2015-04-19]
C:\Program Files (x86)\AviSynth+\plugins\TIVTC.dll  [1.0.14.0, 2019-02-07]

[Scripts (AVSI)]  [Time stamp]
C:\Program Files (x86)\AviSynth+\plugins+\colors_rgb.avsi  [2019-10-20]
C:\Program Files (x86)\AviSynth+\plugins\AnimeIVTC.avsi  [2017-02-09]
C:\Program Files (x86)\AviSynth+\plugins\AviSynthPluginsDir.avsi  [2009-06-17]
C:\Program Files (x86)\AviSynth+\plugins\avslib.avsi  [2009-05-30]
C:\Program Files (x86)\AviSynth+\plugins\colors_rgb.avsi  [2005-07-08]
C:\Program Files (x86)\AviSynth+\plugins\ConditionalSmoothBob.avsi  [2010-01-15]
C:\Program Files (x86)\AviSynth+\plugins\crt_display.avsi  [2014-06-05]
C:\Program Files (x86)\AviSynth+\plugins\dv2film.avsi  [2010-01-15]
C:\Program Files (x86)\AviSynth+\plugins\FFMS2.avsi  [2015-05-22]
C:\Program Files (x86)\AviSynth+\plugins\InterFrame2.avsi  [2015-05-21]
C:\Program Files (x86)\AviSynth+\plugins\loader.avsi  [2007-02-12]
C:\Program Files (x86)\AviSynth+\plugins\MotionProtectedFPS.avsi  [2006-07-22]
C:\Program Files (x86)\AviSynth+\plugins\plugins.avsi  [2009-05-30]
C:\Program Files (x86)\AviSynth+\plugins\QTGMC.avsi  [2019-07-20]
C:\Program Files (x86)\AviSynth+\plugins\setmemorymax.avsi  [2015-10-07]
C:\Program Files (x86)\AviSynth+\plugins\showproperties.avsi  [2015-10-07]
C:\Program Files (x86)\AviSynth+\plugins\smdegrain.avsi  [2019-07-21]
C:\Program Files (x86)\AviSynth+\plugins\Srestore.avsi  [2018-03-15]

[Uncategorized DLLs (32 Bit)]  [Version, Time stamp]
C:\Program Files (x86)\AviSynth+\plugins\fftw3.dll  [x.x.x.x, 2004-01-30]
C:\Program Files (x86)\AviSynth+\plugins\libflowgpu.dll  [1.2.0.0, 2011-04-19]
C:\Program Files (x86)\AviSynth+\plugins\libflowsse.dll  [1.3.0.0, 2011-04-28]
C:\Program Files (x86)\AviSynth+\plugins\svpflow_cpu.dll  [1.7.2.0, 2014-03-11]
C:\Program Files (x86)\AviSynth+\plugins\svpflow_gpu.dll  [1.8.4.0, 2014-05-03]

[Uncategorized files]  [Time stamp]
C:\Program Files (x86)\AviSynth+\plugins+\colors_rgb.txt  [2019-10-20]
C:\Program Files (x86)\AviSynth+\plugins\AviSynth.css  [2006-12-25]
C:\Program Files (x86)\AviSynth+\plugins\avisynth.h  [2004-03-17]
C:\Program Files (x86)\AviSynth+\plugins\AviSynth.lib  [2006-12-31]
C:\Program Files (x86)\AviSynth+\plugins\AviSynth_C.h  [2006-03-28]
C:\Program Files (x86)\AviSynth+\plugins\AVSInpaint.c  [2008-02-23]
C:\Program Files (x86)\AviSynth+\plugins\AVSInpaint.htm  [2008-02-23]
C:\Program Files (x86)\AviSynth+\plugins\AVSInpaint.Makefile.gcc.txt  [2008-02-21]
C:\Program Files (x86)\AviSynth+\plugins\Builds.txt  [2014-05-11]
C:\Program Files (x86)\AviSynth+\plugins\DecombFAQ.html  [2008-06-13]
C:\Program Files (x86)\AviSynth+\plugins\DecombReferenceManual.html  [2008-06-13]
C:\Program Files (x86)\AviSynth+\plugins\DecombTutorial.html  [2008-06-13]
C:\Program Files (x86)\AviSynth+\plugins\degrainmedian.html  [2006-10-08]
C:\Program Files (x86)\AviSynth+\plugins\Demo.avs  [2008-02-23]
C:\Program Files (x86)\AviSynth+\plugins\dv2film.txt  [2010-01-15]
C:\Program Files (x86)\AviSynth+\plugins\exinpaint-rus.html  [2011-09-16]
C:\Program Files (x86)\AviSynth+\plugins\exinpaint.cbp  [2008-01-14]
C:\Program Files (x86)\AviSynth+\plugins\exinpaint.cpp  [2008-01-30]
C:\Program Files (x86)\AviSynth+\plugins\exinpaint.dsp  [2008-01-14]
C:\Program Files (x86)\AviSynth+\plugins\exinpaint.dsw  [2008-01-14]
C:\Program Files (x86)\AviSynth+\plugins\exinpaint.html  [2011-09-16]
C:\Program Files (x86)\AviSynth+\plugins\exinpaint.rc  [2008-01-30]
C:\Program Files (x86)\AviSynth+\plugins\FDecimateHelp.html  [2008-07-03]
C:\Program Files (x86)\AviSynth+\plugins\ffms2-avisynth.html  [2012-01-11]
C:\Program Files (x86)\AviSynth+\plugins\ffms2.lib  [2016-12-29]
C:\Program Files (x86)\AviSynth+\plugins\ffmsindex.exe  [2016-12-29]
C:\Program Files (x86)\AviSynth+\plugins\fft3dfilter-rus.html  [2007-12-02]
C:\Program Files (x86)\AviSynth+\plugins\FFT3DFilter.cbp  [2007-02-20]
C:\Program Files (x86)\AviSynth+\plugins\FFT3DFilter.cpp  [2007-02-21]
C:\Program Files (x86)\AviSynth+\plugins\fft3dfilter.html  [2007-12-02]
C:\Program Files (x86)\AviSynth+\plugins\FFT3DFilter.rc  [2007-02-21]
C:\Program Files (x86)\AviSynth+\plugins\fft3dfilter_3dnow.cpp  [2005-08-30]
C:\Program Files (x86)\AviSynth+\plugins\fft3dfilter_c.cpp  [2006-09-09]
C:\Program Files (x86)\AviSynth+\plugins\fft3dfilter_sse.cpp  [2006-05-11]
C:\Program Files (x86)\AviSynth+\plugins\fftwlite.h  [2006-11-27]
C:\Program Files (x86)\AviSynth+\plugins\GetSystemEnv.html  [2008-06-09]
C:\Program Files (x86)\AviSynth+\plugins\GNUGPLv2.txt  [2006-11-04]
C:\Program Files (x86)\AviSynth+\plugins\gpl-rus.txt  [2003-11-29]
C:\Program Files (x86)\AviSynth+\plugins\gpl.txt  [2003-10-02]
C:\Program Files (x86)\AviSynth+\plugins\info.h  [2003-05-02]
C:\Program Files (x86)\AviSynth+\plugins\inpainted.jpg  [2008-01-14]
C:\Program Files (x86)\AviSynth+\plugins\inpainting.cpp  [2008-01-30]
C:\Program Files (x86)\AviSynth+\plugins\inpainting.h  [2008-01-30]
C:\Program Files (x86)\AviSynth+\plugins\InterFrame2.html  [2015-05-21]
C:\Program Files (x86)\AviSynth+\plugins\knlmeans doc.txt  [2016-02-19]
C:\Program Files (x86)\AviSynth+\plugins\makefile  [2005-08-13]
C:\Program Files (x86)\AviSynth+\plugins\masked.jpg  [2008-01-14]
C:\Program Files (x86)\AviSynth+\plugins\masktools2-x86.zip  [2016-06-07]
C:\Program Files (x86)\AviSynth+\plugins\motion.html  [2006-07-22]
C:\Program Files (x86)\AviSynth+\plugins\MT.html  [2007-03-02]
C:\Program Files (x86)\AviSynth+\plugins\nnedi2 - Readme.txt  [2010-05-16]
C:\Program Files (x86)\AviSynth+\plugins\nnedi3 - Readme.txt  [2011-06-10]
C:\Program Files (x86)\AviSynth+\plugins\original.jpg  [2008-01-14]
C:\Program Files (x86)\AviSynth+\plugins\overlap.gif  [2005-04-05]
C:\Program Files (x86)\AviSynth+\plugins\PointSize_readme.txt  [2010-05-19]
C:\Program Files (x86)\AviSynth+\plugins\QTGMC-3.32.html  [2011-05-05]
C:\Program Files (x86)\AviSynth+\plugins\QTGMC-3.32.rar  [2020-01-07]
C:\Program Files (x86)\AviSynth+\plugins\QTGMC.rar  [2020-01-07]
C:\Program Files (x86)\AviSynth+\plugins\readme.txt  [2014-01-11]
C:\Program Files (x86)\AviSynth+\plugins\register_avssr.exe  [2014-01-10]
C:\Program Files (x86)\AviSynth+\plugins\ReInterpolate411.aps  [2003-08-01]
C:\Program Files (x86)\AviSynth+\plugins\ReInterpolate411.cpp  [2003-08-01]
C:\Program Files (x86)\AviSynth+\plugins\ReInterpolate411.dsp  [2003-08-01]
C:\Program Files (x86)\AviSynth+\plugins\ReInterpolate411.plg  [2003-08-01]
C:\Program Files (x86)\AviSynth+\plugins\ReInterpolate411.rc  [2003-08-01]
C:\Program Files (x86)\AviSynth+\plugins\resource.h  [2003-07-31]
C:\Program Files (x86)\AviSynth+\plugins\RgTools-x86.zip  [2016-06-07]
C:\Program Files (x86)\AviSynth+\plugins\Rm_logo.avs  [2016-06-07]
C:\Program Files (x86)\AviSynth+\plugins\test-pattern.avs  [2014-06-05]
C:\Program Files (x86)\AviSynth+\plugins\testpic.png  [2014-06-05]
C:\Program Files (x86)\AviSynth+\plugins\yadif.html  [2009-10-10]
C:\Program Files (x86)\AviSynth+\plugins\yadifmod - Readme.txt  [2007-09-15]

Last edited by Trixter; 8th January 2020 at 03:16.
Trixter is offline   Reply With Quote
Old 8th January 2020, 03:35   #771  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,346
@Trixter -

You need to clean up your plugins directory. Too much junk. All those old 2.5 plugins

For example you have 2 masktools. That's probably the current problem. Move the obsolete one somewhere else

C:\Program Files (x86)\AviSynth+\plugins\mt_masktools-25.dll [2.0.48.0, 2010-12-31]
C:\Program Files (x86)\AviSynth+\plugins\masktools2.dll [2.2.18.0, 2018-09-05]
poisondeathray is offline   Reply With Quote
Old 8th January 2020, 06:29   #772  |  Link
Trixter
Registered User
 
Join Date: Oct 2003
Posts: 209
Moving the old masktools out of the way got the script running, thanks. (The perils of being an avisynth user since 2003 -- I never want to get rid of a hacked plugin to support 2006-era scripts, LOL)

Unfortunately, while the script is working and the output is indeed 10-bit, the results are terrible; the motion is not stable, details are lost, and the "very slow" and "placebo" presets produce black dot artifacts. Now that I know it's possible for the script to run, I'll have to completely empty my plugins directory and start putting things back one by one, I guess.
Trixter is offline   Reply With Quote
Old 8th January 2020, 06:51   #773  |  Link
Trixter
Registered User
 
Join Date: Oct 2003
Posts: 209
By doing ConvertBits(8).ConvertToYUY2(), I've confirmed that the artifacts (jittery motion, blurry detail, distorted edges) only show up when trying to process the footage as YUV422P10. When it's YUY2, GTQMC works perfectly. I'm already running the latest version of the plugins, especially mvtools, so I'm not sure what I'm doing wrong.

8-bit content is fine:



...but 10-bit content is distorted and jumps every frame (see the non-rectangular fence in the center of the background, and the fuzzy edges around the wire light in the very upper right):

Trixter is offline   Reply With Quote
Old 8th January 2020, 07:18   #774  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,346
Quote:
Originally Posted by Trixter View Post
I'm already running the latest version of the plugins, especially mvtools, so I'm not sure what I'm doing wrong.

Not according to post 773. For example rgtools 2014-02-12 is old. Some of those very old plugins might be interfering

For example, RemoveGrain() the call is part of rgtools, but also RemoveGrain.dll from 2007. It's the same call. Same name.

What happens when it autoloads the old plugin ? Which one gets used?

#1 cause of these sorts of problems is cluttered autoload directory. Clean it out

e.g. FFMS2 2016-12-29 is old. Is it "old enough" to cause problems? I don't know.



Quote:
Originally Posted by Trixter View Post
I'll have to completely empty my plugins directory and start putting things back one by one, I guess.
Yes. Or LoadPlugin manually. Keep only frequently used items in the autoload directory

Last edited by poisondeathray; 8th January 2020 at 07:21.
poisondeathray is offline   Reply With Quote
Old 8th January 2020, 07:45   #775  |  Link
Trixter
Registered User
 
Join Date: Oct 2003
Posts: 209
I appreciate the advice. I'll give this another shot by completely disabling autoload and LoadPlugin everything manually. Thanks!
Trixter is offline   Reply With Quote
Old 8th January 2020, 17:40   #776  |  Link
Trixter
Registered User
 
Join Date: Oct 2003
Posts: 209
Quote:
Originally Posted by poisondeathray View Post
e.g. FFMS2 2016-12-29 is old.
It's actually more recent than the latest version listed here: https://github.com/FFMS/ffms2/releases

If both the version I have is old, and the official github release is old, where should I be getting FFMS2?
Trixter is offline   Reply With Quote
Old 8th January 2020, 18:39   #777  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by Trixter View Post
It's actually more recent than the latest version listed here: https://github.com/FFMS/ffms2/releases

If both the version I have is old, and the official github release is old, where should I be getting FFMS2?
I believe it's this one.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Old 10th January 2020, 06:19   #778  |  Link
Trixter
Registered User
 
Join Date: Oct 2003
Posts: 209
Update: After emptying all my plugins and starting from scratch, I am now successful maintaining a 10-bit pipeline with qtgmc. All artifacts reported previously are gone. The final result:

Code:
[CPP 2.6 Plugins (32 Bit)]  [Version, Time stamp]
C:\Program Files (x86)\AviSynth+\plugins\DePan.dll  [2.13.1.4, 2019-05-02]
C:\Program Files (x86)\AviSynth+\plugins\DePanEstimate.dll  [2.10.0.3, 2019-05-02]
C:\Program Files (x86)\AviSynth+\plugins\ffms2.dll  [x.x.x.x, 2020-01-01]
C:\Program Files (x86)\AviSynth+\plugins\fft3dfilter.dll  [2.6.0.0, 2019-01-31]
C:\Program Files (x86)\AviSynth+\plugins\masktools2.dll  [2.2.18.0, 2018-09-05]
C:\Program Files (x86)\AviSynth+\plugins\mvtools2.dll  [2.7.41.0, 2019-05-02]
C:\Program Files (x86)\AviSynth+\plugins\nnedi3.dll  [0.9.4.53, 2019-06-06]
C:\Program Files (x86)\AviSynth+\plugins\RgTools.dll  [0.98.0.0, 2019-08-14]

[Scripts (AVSI)]  [Time stamp]
C:\Program Files (x86)\AviSynth+\plugins\AnimeIVTC.avsi  [2017-02-09]
C:\Program Files (x86)\AviSynth+\plugins\QTGMC.avsi  [2019-07-20]
C:\Program Files (x86)\AviSynth+\plugins\smdegrain.avsi  [2019-07-21]

[Uncategorized DLLs (32 Bit)]  [Version, Time stamp]
C:\Program Files (x86)\AviSynth+\plugins\libfftw3-3.dll  [x.x.x.x, 2016-07-30]
C:\Program Files (x86)\AviSynth+\plugins\libfftw3f-3.dll  [x.x.x.x, 2016-07-30]
C:\Program Files (x86)\AviSynth+\plugins\libfftw3l-3.dll  [x.x.x.x, 2016-07-30]
Thanks to all who gave me pointers. Now I'm off to fight with ffmpeg :-)
Trixter is offline   Reply With Quote
Old 10th January 2020, 12:23   #779  |  Link
StainlessS
HeartlessS Usurer
 
StainlessS's Avatar
 
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,980
Delete these [not used for avisynth]
Code:
C:\Program Files (x86)\AviSynth+\plugins\libfftw3-3.dll  [x.x.x.x, 2016-07-30]
C:\Program Files (x86)\AviSynth+\plugins\libfftw3l-3.dll  [x.x.x.x, 2016-07-30]
This one sometimes also renamed to fftw3.dll for some plugins (some more recent plugs can load under either name).
Code:
C:\Program Files (x86)\AviSynth+\plugins\libfftw3f-3.dll  [x.x.x.x, 2016-07-30]
Both above [both alternate names] can be moved to system32 or sysWOW64 on x64 (but should run ok from plugins, I dont like any rubbish in my plugins).

EDIT: Also note for future, only use one of below [there is more than one similar plugin group in your prev posted list]
Code:
C:\Program Files (x86)\AviSynth+\plugins\RSharpen.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RSharpenS.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RSharpenSSE2.dll  [x.x.x.x, 2007-10-24]
C:\Program Files (x86)\AviSynth+\plugins\RSharpenSSE3.dll  [x.x.x.x, 2007-10-24]
SSE3 is for SSE3 machine SSE2 for SSE2, S is static linked, ie dont need VS cpp runtimes, and the naked named dll is C only, so you just pick one.
[SSE3 is little better than SSE2, and some people used to say that SSE3 versions sometimes had problems, so most used SSE2]

EDIT: Lastly, dont just chuck everything in plugin zip into yor plugins folder, you had source code and html and even zip's in yours.

EDIT: To below: Thank You maestro.
__________________
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; 10th January 2020 at 12:36.
StainlessS is offline   Reply With Quote
Old 10th January 2020, 12:29   #780  |  Link
Groucho2004
 
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
Quote:
Originally Posted by StainlessS View Post
Code:
C:\Program Files (x86)\AviSynth+\plugins\libfftw3f-3.dll  [x.x.x.x, 2016-07-30]
Both above [both alternate names] can be moved to system32 or sysWOW64 on x64 (but should run ok from plugins, I dont like any rubbish in my plugins).
Only if the plugins path is in the 'PATH' environment variable. People should use the default directories for the fftw DLLs, namely System32 and/or SysWoW64 which provide a clear distinction between 32/64 bit modules.
__________________
Groucho's Avisynth Stuff
Groucho2004 is offline   Reply With Quote
Reply

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 18:48.


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