25.08.2020, 07:46
Quote:Quote: Wrote:Python exception: There is no function named SangNommissing filters
This is strange because both libsangnom.dylib and libsangnommod.dylib are installed. AntiAliasing -> MAA and AAF give same error.
Quote:Quote: Wrote:Python exception: There is no function named SangNommissing filters
Failed to evaluate the script:
Python exception: There is no function named Continuity
Traceback (most recent call last):
File "src/cython/vapoursynth.pyx", line 2244, in vapoursynth.vpy_evaluateScript
File "src/cython/vapoursynth.pyx", line 2245, in vapoursynth.vpy_evaluateScript
File "/Volumes/temp/Hybrid Temp/tempPreviewVapoursynthFile15_50_11_948.vpy", line 19, in <module>
clip = core.edgefixer.Continuity(clip=clip,right=5,radius=5)
File "src/cython/vapoursynth.pyx", line 1934, in vapoursynth.Plugin.__getattr__
AttributeError: There is no function named Continuity
Failed to evaluate the script:
Python exception: invalid syntax (tempPreviewVapoursynthFile16_19_18_227.vpy, line 18)
Traceback (most recent call last):
File "src/cython/vapoursynth.pyx", line 2241, in vapoursynth.vpy_evaluateScript
File "/Volumes/temp/Hybrid Temp/tempPreviewVapoursynthFile16_19_18_227.vpy", line 18
clip = core.vivtc.VFM(clip=clip, order=0, mode=0, mchroma=, blockx=4, blocky=4)
^
SyntaxError: invalid syntax
Quote:Also it seems something wrong with Filtering -> Color -> TimeCube filter.You misunderstood how this should work.
Quote:This is strange because both libsangnom.dylib and libsangnommod.dylib are installed. AntiAliasing -> MAA and AAF give same error.Both work fine here, so it's something with the dylibs you use.
Quote:Python exception: NNEDI3CL: pscrn must be 1 or 2fixed.
Quote:Python exception: SMDegrain() got an unexpected keyword argument 'opencl'-> fixed updated https://github.com/Selur/VapoursynthScriptsInHybrid
Quote:Seems you still use old havsfunc.py script (edited for fft3dfilter only) inside Hybrid build instead of new universal (fft3dfilter/neo_fft3d) version you posted on githubhttps://github.com/Selur/VapoursynthScriptsInHybrid should now contain the new version
Quote:Generate name for PoRes now force generates mkv.mov container namehopefully fixed now
Quote:By the way, There is "Image Sequence Base" preference in Config tab. Seems Image Sequence importer ignore it and always use 1.000 framerate as default, so i need to change framerate manually on every Sequence import import.fixed
Quote:Here is also list of probably not updated yet internal components to track:Haven't had time to compile all the tools anew.
Quote:Artefacts -> EdgeFixer ERRORCall is correct (https://github.com/sekrit-twc/EdgeFixer) works fine on Linux and Windows
Quote:Filtering -> Other -> VFM ERROR:Can't reproduce that here.
..
..Code:clip = core.vivtc.VFM(clip=clip, order=0, mode=0, mchroma=, blockx=4, blocky=4)
# Imports
import vapoursynth as vs
core = vs.get_core()
# loading source: /Users/selur/Desktop/test.avi
# color sampling YUV420P8@8, matrix:470bg, scantyp: progressive
# luminance scale TV
# resolution: 640x352
# frame rate: 25 fps
# input color space: YUV420P8, bit depth: 8, resolution: 640x352, fps: 25
# Loading source using FFMS2
clip = core.ffms2.Source(source="/Users/selur/Desktop/test.avi",cachefile="/Users/selur/temp/avi_c6b2c493052375dcc56052d30e195c86_853323747.ffindex",format=vs.YUV420P8,alpha=False)
# making sure input color matrix is set as 470bg
clip = core.resize.Point(clip, matrix_in_s="470bg",range_s="limited")
# making sure frame rate is set to 25
clip = core.std.AssumeFPS(clip, fpsnum=25, fpsden=1)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
clip = core.vivtc.VFM(clip=clip, order=0, mode=0, mchroma=False, blockx=4, blocky=4)
# Output
clip.set_output()
Quote:Small request - is it possible somehow to save "Filter Order" positions when save global preset "Filter(s): All" ?Should work now (old profiles do not contain the value, so you would need to recreate them)
Quote:It open two windows, and when i close one window everything is hangs (Hybrid.app not responding) and i only can close Hybrid with "Force Quit Applications" command.I can reproduce the problem and will look into it, but probably not before the weekend.
clip = core.std.AddBorders(clip=clip, left=0, right=2, top=0, bottom=0) # add borders to archive mod 4 (VsQTGMC)
# setting field order to what QTGMC should assume
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=2)
# Deinterlacing using QTGMC
clip = havsfunc.QTGMC(Input=clip, Preset="Slower", TFF=True, InputType=0, TR2=1, Sharpness=1.0, SourceMatch=0, Lossless=0, opencl=True) # new fps: 59.94
# make sure content is preceived as frame based
clip = core.std.SetFieldBased(clip, 0)
clip = core.std.CropRel(clip=clip, left=0, right=2, top=0, bottom=0) # removing borders (VsQTGMC)
# adjusting frame count and rate with sRestore
clip = havsfunc.srestore(source=clip, frate=25.000, omode=6, speed=9, thresh=16)
clip = havsfunc.Vinverse2(clp=clip, sstr=5.00)
Quote:Quote:
Also it seems something wrong with Filtering -> Color -> TimeCube filter.
You misunderstood how this should work. Smile
You select a custom folder and then Hybrid should list the .cube files inside that folder in the 'Use custom LUT' drop box.
As a side note: I'm planning to ship a bunch of .cube files Hybrid like I do on Windows, but that is way down on my todo list.