This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Hybrid-rev 2021.07.18.1 Bugs
#7
regarding VIVTC:
the VIVTC-error is a hoax Smile I accidentally played the error message at the wrong place, aside from being annoying it doesn't beak anything or indicate anything is broken. (fixed locally)

regarding SMDegrain: I can't reproduce for me the generated script looks like:
# Imports
import os
import sys
import vapoursynth as vs
# getting Vapoursynth core
core = vs.core
# Import scripts folder
scriptPath = 'I:/Hybrid/64bit/vsscripts'
sys.path.append(os.path.abspath(scriptPath))
# Loading Plugins
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/fmtconv.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/DenoiseFilter/CTMF/CTMF.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/libmvtools.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/SourceFilter/FFMS2/ffms2.dll")
# Import scripts
import nnedi3_resample
import mvsfunc
import havsfunc
# source: 'G:\TestClips&Co\files\test.avi'
# current color space: YUV420P8, bit depth: 8, resolution: 640x352, fps: 25, color matrix: 470bg, yuv luminance scale: limited, scanorder: progressive
# Loading source using FFMS2
clip = core.ffms2.Source(source="G:/TestClips&Co/files/test.avi",cachefile="E:/Temp/avi_6c441f37d9750b62d59f16ecdbd59393_853323747.ffindex",format=vs.YUV420P8,alpha=False)
# making sure input color matrix is set as 470bg
clip = core.resize.Bicubic(clip, matrix_in_s="470bg",range_s="limited")
# making sure frame rate is set to 25
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# removing grain using SMDegrain
clip = havsfunc.SMDegrain(input=clip, interlaced=False, opencl=True, device=-1)
clip = core.fmtc.resample(clip=clip, kernel="spline16", w=1964, h=1080, interlaced=False, interlacedd=False)
# adjusting output color from: YUV420P16 to YUV420P10 for x265Model
clip = core.resize.Bicubic(clip=clip, format=vs.YUV420P10, range_s="limited")
# set output frame rate to 25.000fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=25, fpsden=1)
# Output
clip.set_output()
and SMDeGrain from havsfunc has an opencl option:
def SMDegrain(input, tr=2, thSAD=300, thSADC=None, RefineMotion=False, contrasharp=None, CClip=None, interlaced=False, tff=None, plane=4, Globals=0, pel=None, subpixel=2, prefilter=-1, mfilter=None,
              blksize=None, overlap=None, search=4, truemotion=None, MVglobal=None, dct=0, limit=255, limitc=None, thSCD1=400, thSCD2=130, chroma=True, hpad=None, vpad=None, Str=1.0, Amp=0.0625, opencl=False, device=None):
works fine here.

-> will build a new (clean) dev version and send you a link in a few minutes.

Cu Selur
Reply


Messages In This Thread
Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 12:04
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 12:13
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 12:16
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 13:15
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 13:51
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 13:56
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 15:06
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 15:11
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 15:17
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 15:27
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 15:29
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 19:27
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 19:32
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 19:34
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 19:54
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 19:48
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 12.08.2021, 20:00
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 12.08.2021, 20:05
RE: Hybrid-rev 2021.07.18.1 Bugs - by shijan - 12.08.2021, 22:34
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 13.08.2021, 04:38
RE: Hybrid-rev 2021.07.18.1 Bugs - by Selur - 13.08.2021, 20:59
RE: Hybrid-rev 2021.07.18.1 Bugs - by light - 14.08.2021, 09:00

Forum Jump:


Users browsing this thread: 1 Guest(s)