17.02.2019, 16:11
(17.02.2019, 15:07)Selur Wrote: What happens if you call:same as before
inside a windows command prompt?"C:\PROGRA~1\Hybrid\64bit\VAPOUR~1\vspipe.exe" "C:\Users\Laci\AppData\Local\Temp\encodingTempSynthSkript_13_55_40_1110.vpy" - --y4m | "C:\PROGRA~1\Hybrid\64bit\x264.exe" --preset veryfast --pass 1 --bitrate 1250 --profile high --level 4.1 --bframes 5 --rc-lookahead 40 --weightp 2 --aq-strength 0.6 --sar 8:9 --deblock 1:1 --non-deterministic --range tv --stats "C:\Users\Laci\AppData\Local\Temp\testfulldvd_13_55_40_1110_04.stats" --demuxer y4m --input-range tv --fps 24000/1001 --output-depth 8 --output NUL -
The Vapoursynth script itself looks fine to me:
My guess is that there is still something 'off' with D2VSource on your system.# Imports
import vapoursynth as vs
core = vs.get_core()
# Loading Plugins
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/SourceFilter/d2vSource/d2vsource.dll")
# Loading P:\VIDEO_TS using D2VSource
clip = core.d2v.Source(input="C:/Users/Laci/AppData/Local/Temp/13_55_40_1110.d2v")
# 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 30000/1001
clip = core.std.AssumeFPS(clip, fpsnum=30000, fpsden=1001)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
clip = core.vivtc.VFM(clip=clip, order=0, mode=1)
clip = core.vivtc.VDecimate(clip=clip)
# Output
clip.set_output()
Also try using another temp folder than the default one governed by Windows. (e.g. D:\Temp; under Config->Paths)
Cu Selur
what im thinking, there used to be two simultanous installations of hybrid on my PC, one from 2016 and the latest stable.
maybe the old one made some system registers, that now causes errors?
apparently now both 2016 version and the latest stable are uninstalled via normal uninstaller and only the dev version is installed.
i added now the log of the latest dev version you sent me.
and debug log from when i try to enable some filters.