24.09.2020, 15:27
You're right about dependencies making things a bit complicated, is there a list of plugins that have external dependencies? I'll see what I can figure out to make it easier.
Esxi running macos For selur
|
24.09.2020, 15:27
You're right about dependencies making things a bit complicated, is there a list of plugins that have external dependencies? I'll see what I can figure out to make it easier.
26.09.2020, 14:19
No clue whether color matrix handling is totally broken or works, but I uploaded my current dev version to GoogleDrive.
Mainly did some cosmetic changes. Cu Selur
26.09.2020, 14:25
Thanks selur!!!
26.09.2020, 23:38
Ugh i made a dumb mistake, started encoding a file with just enough space for the .264 file, but not enough to mux the dang thing. Had to restart it because i accidentally hit the play button in jobs. And it began reencoding LOL
Lesson learned. Pick a drive with more space LOL
27.09.2020, 11:35
To make sure you still have XY MB free use "Config->Internals->Handling->Minimum size in MB which is required to start a job"
27.09.2020, 18:26
Next time it happens i will mux the .x264 with mkvtoolnix.
When people use qtgmc on avisynt qtgmc for noise reduction and they say sigma 8.0 Is sigma the amount of noise reduction? Does it translate for qtgmc for vapoursynth?
Looking at the QTGMC interface in Avisynth:
function QTGMC( clip Input, string "Preset", int "TR0", int "TR1", int "TR2", int "Rep0", int "Rep1", int "Rep2", string "EdiMode", bool "RepChroma", \ and QTGMC in Vapoursynth: def QTGMC(Input, Preset='Slower', TR0=None, TR1=None, TR2=None, Rep0=None, Rep1=0, Rep2=None, EdiMode=None, RepChroma=True, NNSize=None, NNeurons=None, EdiQual=1, EdiMaxD=None, ChromaEdi='', I would say: Yes, 'Sigma' in Avisynth and Vapoursynth should do the same thing and yes Sigma is basically used as denoising strengh (not the denoising threshold), note that depending on the denoiser used Sigma might get changed internally. -> so without knowing the rest of the used parameters 'Sigma' on it's own doesn't really help. And before you ask: No, Hybrid does not offer to overwrite the value of Sigma. (Personally I don't use QTGMC for filtering, I prefer to use the filters separately.) Cu Selur
27.09.2020, 18:52
I am trying to implement something similar to an aviscript for qtgmc and it looks like i need to do a sigma of 8.0 and a noiserestore of 0.3
On hybrid vapoursynth if i click on ezdenoise=8, which i am assuming is the sigma, i cant click on ezgrain which i am assuming is the noiserestore. (nevermind ezgrain is in another section) i don’t see noiserestore or grain restore customization on hybrid for qtgmc. Am i missing something or is this going to require me to customize. Just wondering.
27.09.2020, 19:14
Quote:On hybrid vapoursynth if i click on ezdenoise=8, which i am assuming is the sigma, i cant click on ezgrain which i am assuming is the noiserestore.EZDenoise -> automatic setting to denoise source. EZKeepGrain -> automatic setting to retain source grain/detail. You can't use EZDenoise and EZKeepGrain together. If you try QTGMC will throw an error: "QTGMC: EZDenoise and EZKeepGrain cannot be used together" In QTGMC, if Sigma isn't set, it will be adjusted by: if Sigma is None: if Denoiser == 'dfttest': DFTTest Sigma: sigma can be anywhere from 1.0 to 256.0 and beyond; denoising "strength" seems proportional to the square root of sigma. KNLMeansCL h (Sigma): Controls the strength of the filtering. Larger values will remove more noise. FFT3D: sigma - given noise value for all (or highest) frequencies (float>0, default=2.0) When GrainRestore is not overwritten, it is set by: if GrainRestore is None: -> If you want to understand the options your best bet is probably trying to read the QTGMC script itself, since it's decent documented in the script. Quote:Am i missing something or is this going to require me to customize.Not really knowing what you want to do, you probably need to write your own script. Cu Selur
27.09.2020, 19:38
Lol,
Will try to read the instructions. I wish i could tell you, even i don’t know what im doing lol |
« Next Oldest | Next Newest »
|