The following warnings occurred:
Warning [2] Undefined array key 1 - Line: 313 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 313 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Undefined array key 1 - Line: 314 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 314 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Undefined array key "" - Line: 327 - File: inc/plugins/google_seo/redirect.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo/redirect.php 327 errorHandler->error_callback
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once



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.

Crashed with exit status 0
#7
The debug output shows:
y4m [error]: bad sequence header magic
Which indicates that something with the Vapoursynth script does not work.
# Imports
import vapoursynth as vs
import os
import ctypes
# Loading Support Files
Dllref = ctypes.windll.LoadLibrary("C:/Program Files/Hybrid/64bit/vsfilters/Support/libfftw3f-3.dll")
import sys
# getting Vapoursynth core
core = vs.core
# Import scripts folder
scriptPath = 'C:/Program Files/Hybrid/64bit/vsscripts'
sys.path.insert(0, os.path.abspath(scriptPath))
# Loading Plugins
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/GrainFilter/RemoveGrain/RemoveGrainVS.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/GrainFilter/AddGrain/AddGrain.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/DenoiseFilter/FFT3DFilter/fft3dfilter.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/DenoiseFilter/DFTTest/DFTTest.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/EEDI3m.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/ResizeFilter/nnedi3/vsznedi3.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/libmvtools.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/scenechange.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/fmtconv.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/MiscFilter/MiscFilters/MiscFilters.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/DeinterlaceFilter/Bwdif/Bwdif.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/SourceFilter/DGDecNV/DGDecodeNV.dll")
# Import scripts
import havsfunc
# source: '\\server\e\Download\! NewPorn\!! gecut en klaar\zz Low width\KMA_scene_901077_VGA_0001.mp4'
# current color space: YUV420P8, bit depth: 8, resolution: 640x480, fps: 29.97, color matrix: 470bg, yuv luminance scale: limited, scanorder: bottom field first
# Loading \\server\e\Download\! NewPorn\!! gecut en klaar\zz Low width\KMA_scene_901077_VGA_0001.mp4 using DGSource
clip = core.dgdecodenv.DGSource("C:/Users/Robbie303/AppData/Local/Temp/2023-11-29@17_22_32_7910.dgi",fieldop=0)# 29.97 fps, scanorder: bottom field first
# Setting detected color matrix (470bg).
clip = core.std.SetFrameProps(clip, _Matrix=5)
# Setting color transfer info (470bg), when it is not set
clip = clip if not core.text.FrameProps(clip,'_Transfer') else core.std.SetFrameProps(clip, _Transfer=5)
# Setting color primaries info (), when it is not set
clip = clip if not core.text.FrameProps(clip,'_Primaries') else core.std.SetFrameProps(clip, _Primaries=5)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# making sure frame rate is set to 29.97
clip = core.std.AssumeFPS(clip=clip, fpsnum=30000, fpsden=1001)
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=1) # bff
# Deinterlacing using QTGMC
clip = havsfunc.QTGMC(Input=clip, Preset="Very Slow", InputType=0, TFF=False, TR2=2, SourceMatch=0, Lossless=0, EZKeepGrain=2.00, NoisePreset="Fast") # new fps: 59.94
# Making sure content is preceived as frame based
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=0) # progressive
# cropping the video to 638x480
clip = core.std.CropRel(clip=clip, left=0, right=2, top=0, bottom=0)
# set output frame rate to 59.94fps (progressive)
clip = core.std.AssumeFPS(clip=clip, fpsnum=60000, fpsden=1001)
# Output
clip.set_output()
seems fine. Only thing I see that might cause issues is the access of the path,..

=> Does the Vapoursynth Preview work?

Cu Selur

Ps.: "Vapoursynth Preview" button is in the lower right corner.
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Messages In This Thread
Crashed with exit status 0 - by Robbie303 - 29.11.2023, 18:31
RE: Crashed with exit status 0 - by Selur - 29.11.2023, 18:34
RE: Crashed with exit status 0 - by Robbie303 - 29.11.2023, 19:15
RE: Crashed with exit status 0 - by Selur - 29.11.2023, 19:17
RE: Crashed with exit status 0 - by Selur - 29.11.2023, 19:19
RE: Crashed with exit status 0 - by Robbie303 - 29.11.2023, 19:32
RE: Crashed with exit status 0 - by Selur - 29.11.2023, 19:39
RE: Crashed with exit status 0 - by Robbie303 - 29.11.2023, 19:44
RE: Crashed with exit status 0 - by Selur - 29.11.2023, 19:46
RE: Crashed with exit status 0 - by Robbie303 - 29.11.2023, 19:52
RE: Crashed with exit status 0 - by Selur - 29.11.2023, 20:01
RE: Crashed with exit status 0 - by Robbie303 - 29.11.2023, 20:12
RE: Crashed with exit status 0 - by Selur - 29.11.2023, 20:20
RE: Crashed with exit status 0 - by Robbie303 - 29.11.2023, 20:33
RE: Crashed with exit status 0 - by Selur - 29.11.2023, 22:00
RE: Crashed with exit status 0 - by Robbie303 - 29.11.2023, 23:05
RE: Crashed with exit status 0 - by Selur - 30.11.2023, 05:53
RE: Crashed with exit status 0 - by Robbie303 - 30.11.2023, 22:57
RE: Crashed with exit status 0 - by Selur - 01.12.2023, 05:48
RE: Crashed with exit status 0 - by Robbie303 - 29.09.2024, 01:14
RE: Crashed with exit status 0 - by Selur - 29.09.2024, 04:57

Forum Jump:


Users browsing this thread: 1 Guest(s)