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.

Error when trying to use HQDN3D and Vapoursynth
#1
Job will crash with exit status 0

VapourSynth script Editor:

 
# Imports
import vapoursynth as vs
core = vs.get_core()
# Loading Plugins
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/DenoiseFilter/HQDN3D/libhqdn3d.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll")

# making sure input color matrix is set as 709
clip = core.resize.Point(clip, matrix_in_s="709",range_s="limited")
# making sure frame rate is set to 23.976
clip = core.std.AssumeFPS(clip, fpsnum=24000, fpsden=1001)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# denoising using HQDN3D
clip = core.hqdn3d.Hqdn3d(clip=clip, chrom_spac=4.00, luma_temp=9.00, chroma_temp=9.00)
# Output
clip.set_output()

and the VapourSynth editor log:


Failed to evaluate the script:
Python exception: Hqdn3d: Function does not take argument(s) named luma_temp, chroma_temp

Traceback (most recent call last):
  File "src\cython\vapoursynth.pyx", line 1951, in vapoursynth.vpy_evaluateScript
  File "src\cython\vapoursynth.pyx", line 1952, in vapoursynth.vpy_evaluateScript
  File "C:\Users\User\AppData\Local\Temp\tempPreviewVapoursynthFile13_48_23_470.vpy", line 16, in <module>
    clip = core.hqdn3d.Hqdn3d(clip=clip, chrom_spac=4.00, luma_temp=9.00, chroma_temp=9.00)
  File "src\cython\vapoursynth.pyx", line 1830, in vapoursynth.Function.__call__
vapoursynth.Error: Hqdn3d: Function does not take argument(s) named luma_temp, chroma_temp

I did not manually edit the script.  It is the auto made script
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)