23.05.2020, 00:35
I got my video, finally, by rolling back Hybrid to version 2020.02.19.1.
This version also has the bug where it does not set the "Tuning" option in AviSynth, so I had to use a custom script:
The checksums of svpflow1.dll and svpflow2.dll in Hybrid 2020.02.19.1 match what was posted above by Selur in the second post. (Svpflow1.dll CRC32: 0586759C, Svpflow2.dll CRC32: ABA31676) So I have no idea why those files cause Hybrid 2020.05.01.1 to crash.
The new files are definitely not as "smooth" as the old ones. No idea if that would be different if the "SVP Manager" is running with the new files, and I'm not taking the time to find out!
I'm on Windows Server 2008 R2 SP1 (i.e., Windows 7), by the way.
This version also has the bug where it does not set the "Tuning" option in AviSynth, so I had to use a custom script:
LoadCPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\ffms2.dll")
SetFilterMTMode("DEFAULT_MT_MODE", MT_MULTI_INSTANCE)
# loading source: E:\USER\fin\Test\Test.mp4
# input color sampling YV12
# input luminance scale tv
FFVideoSource("E:\USER\fin\Test\TEST.MP4",colorspace="YV12")
# current resolution: 1312x960
# CUSTOM SCRIPT PART - position: AdjustFrameRate - START
function CustomAdjustFrameRate(clip clp) {
last=clp
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\svpflow1.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\svpflow2.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\SplineResize.dll")
Import("C:\Program Files\Hybrid\32bit\avisynthPlugins\InterFrame2.avsi")
InterFrame(Tuning="Smooth",NewNum=60000,NewDen=1001,OverrideAlgo=23,Cores=16)
}
# CUSTOM SCRIPT PART - position: AdjustFrameRate - END
CustomAdjustFrameRate() # loading custom script content
# filtering
# scaling
Spline144Resize(1440,1080)
# current resolution: 1440x1080
# letterboxing
AddBorders(240,0,240,0)
# Current resolution: 1920x1080
PreFetch(4)
return last
The checksums of svpflow1.dll and svpflow2.dll in Hybrid 2020.02.19.1 match what was posted above by Selur in the second post. (Svpflow1.dll CRC32: 0586759C, Svpflow2.dll CRC32: ABA31676) So I have no idea why those files cause Hybrid 2020.05.01.1 to crash.
The new files are definitely not as "smooth" as the old ones. No idea if that would be different if the "SVP Manager" is running with the new files, and I'm not taking the time to find out!
I'm on Windows Server 2008 R2 SP1 (i.e., Windows 7), by the way.