Selur's Little Message Board
[HELP] Video 8 PAL capture/upscale - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html)
+--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html)
+--- Thread: [HELP] Video 8 PAL capture/upscale (/thread-3129.html)

Pages: 1 2 3


RE: Video 8 PAL capture/upscale - Selur - 21.03.2023

you used:
clip = havsfunc.QTGMC(Input=clip, Preset="Slower", InputType=0, TFF=False, TR2=1, SourceMatch=0, Lossless=0, EZDenoise=5.00, NoisePreset="Fast")
The Preset choice defines the Denoise choice, when denoise is set to 'auto', like in your case.
# Noise presets                             Slower      Slow       Medium     Fast      Faster
    Denoiser = fallback(Denoiser,             ['dfttest',  'dfttest', 'dfttest', 'fft3df', 'fft3df'][npNum]).lower()
Since you used 'Slower' dfttest is used.
Does it also crash if you use Medium/Fast/Faster ? (I usually use Fast) Or does is still crash if you explicitly select a Denoiser?

Does using DFTTest as Denoiser (not through QTGMC) work for you?


RE: Video 8 PAL capture/upscale - Miranda - 21.03.2023

I changed some settings in QTGMC and this script works with EZdenoise.


RE: Video 8 PAL capture/upscale - Selur - 21.03.2023

So does it only crash if dfttest is used?
(Hybrid uses: https://github.com/HomeOfVapourSynthEvolution/VapourSynth-DFTTest)