28.03.2018, 21:05
Quote:Ist es in der Dev Version normal, dass ausgegraute Bereiche total verschwommen sind?Ja, teste ich gerade an und bin mir noch unsicher ob ich es drinnen lasse oder nicht.

Quote:Du hattest mir geraten, dass wenn ich NVenc benutze bei Interframe die Gpu weg zu lassen für mehr Performance.Komisch crashed bei mir beides nicht.
Quote:Das Logfile im Anhang ist eine Aufzeichnung von so einem CrashDanke
Der Aufruf sieht eigentlich okay aus:
"F:\Programme\Hybrid\64bit\Vapoursynth\vspipe.exe" "C:\Users\Tobias\AppData\Local\Temp\encodingTempSynthSkript_20_38_32_9010.vpy" - --y4m | "F:\Programme\Hybrid\64bit\NVEncC.exe" --y4m -i - --fps 60.000 --codec h265 --profile main --level auto --sar 1:1 --lookahead 16 --output-depth 8 --cbrhq 8000 --max-bitrate 240000 --gop-len 0 --bframes 0 --ref 3 --mv-precision Q-pel --cu-max 32 --cu-min 8 --videoformat undef --colorprim bt709 --transfer bt709 --colormatrix bt709 --output "C:\Users\Tobias\AppData\Local\Temp\Test_20_38_32_9010_03.265"
# Imports
import os
import sys
import vapoursynth as vs
core = vs.get_core()
# Import scripts folder
scriptPath = 'F:/Programme/Hybrid/64bit/vsscripts'
sys.path.append(os.path.abspath(scriptPath))
# Loading Plugins
core.std.LoadPlugin(path="F:/Programme/Hybrid/64bit/vsfilters/FrameFilter/Interframe/svpflow2_vs64.dll")
core.std.LoadPlugin(path="F:/Programme/Hybrid/64bit/vsfilters/FrameFilter/Interframe/svpflow1_vs64.dll")
core.std.LoadPlugin(path="F:/Programme/Hybrid/64bit/vsfilters/SourceFilter/LSmashSource/vslsmashsource.dll")
# Import scripts
import havsfunc
# Loading F:\Pi\Filme\snipetOriginal.mp4 using LibavSMASHSource
clip = core.lsmas.LibavSMASHSource(source="F:/Pi/Filme/snipetOriginal.mp4")
# making sure input color matrix is set as 709
clip = core.resize.Point(clip, matrix_in_s="709")
# making sure frame rate is set to 24000/1001
clip = core.std.AssumeFPS(clip, fpsnum=24000, fpsden=1001)
# 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, Preset="fastest", Tuning="smooth", NewNum=60, NewDen=1, OverrideAlgo=23)
# Output
clip.set_output()
Siehst Du da irgendeine Fehlermeldung wenn Du den Aufruf in einer Eingabeaufforderung aufrufst?
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.