15.06.2020, 19:54
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
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