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.

Red Border converting 30fps to 60fps
#6
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:

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! Tongue

I'm on Windows Server 2008 R2 SP1 (i.e., Windows 7), by the way.
Reply


Messages In This Thread
RE: Red Border converting 30fps to 60fps - by The_Tinkerer - 23.05.2020, 00:35

Forum Jump:


Users browsing this thread: 1 Guest(s)