The calls itself look fine to me:
The vapoursynth script:
looks fine to me too.
-> Does the Vapoursynth Preview (under Filtering) work?
In case the preview works, do you get any errors when you call the de-/encoding call inside a windows command prompt?
Cu Selur
"C:\PROGRA~1\Hybrid\VAPOUR~1\vspipe.exe" "C:\Users\MAIN\AppData\Local\Temp\encodingTempSynthSkript_15_36_36_0610.vpy" - --y4m | "C:\PROGRA~1\Hybrid\x265.exe" --input - --output-depth 10 --y4m --profile main10 --limit-modes --no-open-gop --lookahead-slices 0 --crf 18.00 --cbqpoffs -2 --crqpoffs -2 --qpfile "C:\Users\MAIN\AppData\Local\Temp\lumod_15_36_36_0610_04.qp" --psy-rd 2.50 --rdoq-level 2 --psy-rdoq 10.00 --aq-mode 0 --deblock=-1:-1 --limit-sao --range limited --colormatrix bt2020nc --hdr --output "C:\Users\MAIN\AppData\Local\Temp\15_36_36_0610_05.265"
# Imports
import os
import sys
import vapoursynth as vs
core = vs.get_core()
# Import scripts folder
scriptPath = 'C:/Program Files/Hybrid/vsscripts'
sys.path.append(os.path.abspath(scriptPath))
# Loading Plugins
core.std.LoadPlugin(path="C:/Program Files/Hybrid/vsfilters/FrameFilter/Interframe/svpflow2_vs64.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/vsfilters/FrameFilter/Interframe/svpflow1_vs64.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll")
# Import scripts
import havsfunc as havsfunc
# Loading C:\Users\MAIN\Desktop\lu.mkv using LWLibavSource
clip = core.lsmas.LWLibavSource(source="C:/Users/MAIN/Desktop/lu.mkv", format="YUV420P10", cache=0)
# making sure input color matrix is set as 2020ncl
clip = core.resize.Point(clip, matrix_in_s="2020ncl")
# Making sure input color range is set to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# adjusting frame count with Interframe/SVP
clip = havsfunc.InterFrame(clip, NewNum=60, NewDen=1)
# Output
clip.set_output()
-> Does the Vapoursynth Preview (under Filtering) work?
In case the preview works, do you get any errors when you call the de-/encoding call inside a windows command prompt?
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.