The following warnings occurred:
Warning [2] Undefined array key 1 - Line: 313 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 313 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Undefined array key 1 - Line: 314 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 314 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Undefined array key "" - Line: 327 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 327 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once



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
#9
Quote:What About QTGMC? It shows error if i put it in Very slow or slow preset....
QTGMC works fine here too. Have you tested it with the dev version I send you?
Script for me is:
# Imports
import os
import sys
import ctypes
# Loading Support Files
Dllref = ctypes.windll.LoadLibrary("I:/Hybrid/64bit/vsfilters/Support/libfftw3f-3.dll")
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/GrainFilter/AddGrain/AddGrain.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/DenoiseFilter/NEO_FFT3DFilter/neo-fft3d.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/DenoiseFilter/DFTTest/DFTTest.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/EEDI3.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/ResizeFilter/nnedi3/vsznedi3.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/libmvtools.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/temporalsoften.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/scenechange.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/Support/fmtconv.dll")
core.std.LoadPlugin(path="I:/Hybrid/64bit/vsfilters/SourceFilter/d2vSource/d2vsource.dll")
# Import scripts
import havsfunc
# source: 'G:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\bff.m2v'
# current color space: YUV420P8, bit depth: 8, resolution: 720x480, fps: 29.97, color matrix: 470bg, yuv luminance scale: limited, scanorder: bottom field first
# Loading G:\TestClips&Co\files\interlaceAndTelecineSamples\interlaced\bff.m2v using D2VSource
clip = core.d2v.Source(input="E:/Temp/m2v_478bc6d007ec94bfc67367d30d9093a4_853323747.d2v")
# 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 29.970
clip = core.std.AssumeFPS(clip=clip, fpsnum=30000, fpsden=1001)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# setting field order to what QTGMC should assume (bottom field first)
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=1)
# Deinterlacing using QTGMC
clip = havsfunc.QTGMC(Input=clip, Preset="Very Slow", TFF=False) # new fps: 29.97
# make sure content is preceived as frame based
clip = core.std.SetFieldBased(clip, 0)
clip = clip[::2]
clip = core.fmtc.resample(clip=clip, kernel="spline16", w=1440, h=1080, interlaced=False, interlacedd=False)
# letterboxing 1440x1080 to 1920x1080
clip = core.std.AddBorders(clip=clip, left=240, right=240, top=0, bottom=0)
# 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 29.970fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=30000, fpsden=1001)
# Output
clip.set_output()
instead of ff3dfilter, which your screenshot showed, neo-fft3d is used.

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
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: 2 Guest(s)