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.

Jobs Repeat Over and Over
#11
just had a quick peek at one of the debug outputs, but seeing that you are using an old Hybrid version: uninstall it completely (with settings) and install the latest dev and try with that. Old debug outputs don't really help.

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
#12
Looking at 'HybridDebugOutput.txt', I see two jobs started:
2025.08.22 - 19:57:46_Windows 10 Version 22H2 (64bit)_2024.09.29.1 - level 9: startJobs: 2025-08-22@19_57_39_9410
2025.08.22 - 21:16:09_Windows 10 Version 22H2 (64bit)_2024.09.29.1 - level 9: startJobs: 2025-08-22@21_16_02_5010
no looping.
Looking at 'Win 10 Laptop _ Crashes HybridDebugOutput.txt', I see two jobs started
2025.08.22 - 21:01:21_Windows 10 Version 22H2 (64bit)_2024.09.29.1 - level 9: startJobs: 2025-08-22@21_01_17_1210
2025.08.22 - 21:10:26_Windows 10 Version 22H2 (64bit)_2024.09.29.1 - level 9: startJobs: 2025-08-22@21_10_21_2610
no looping.
For the first job, the subjob "2025-08-22@21_01_17_1210_03_video" crashed, processing:
# Imports
import vapoursynth as vs
# getting Vapoursynth core
import ctypes
import sys
import os
core = vs.core
# Import scripts folder
scriptPath = 'C:/Program Files/Hybrid/64bit/vsscripts'
sys.path.insert(0, os.path.abspath(scriptPath))
# Loading Support Files
Dllref = ctypes.windll.LoadLibrary("C:/Program Files/Hybrid/64bit/vsfilters/Support/libfftw3f-3.dll")
# 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/DFTTest/DFTTest.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/DenoiseFilter/NEO_FFT3DFilter/neo-fft3d.dll")
core.std.LoadPlugin(path="C:/Program Files/Hybrid/64bit/vsfilters/Support/EEDI3m.dll")# vsQTGMC
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/BestSource/BestSource.dll")
# Import scripts
import havsfunc
import validate
# Source: 'D:\AF VHS BERT SECOND TRY.avi'
# Current color space: YUV422P8, bit depth: 8, resolution: 720x480, frame rate: 30fps, scanorder: top field first, yuv luminance scale: limited, matrix: 470bg, format: YUV
# Loading D:\AF VHS BERT SECOND TRY.avi using BestSource)
clip = core.bs.VideoSource(source="D:/AF VHS BERT SECOND TRY.avi", cachepath="C:/Users/HP PRODESK/AppData/Local/Temp/AF VHS BERT SECOND TRY_bestSource_2025-08-22@21_01_17_1210", track=0)
frame = clip.get_frame(0)
# setting color matrix to 470bg.
clip = core.std.SetFrameProps(clip, _Matrix=vs.MATRIX_BT470_BG)
# setting color transfer (vs.TRANSFER_BT601), if it is not set.
if validate.transferIsInvalid(clip):
  clip = core.std.SetFrameProps(clip=clip, _Transfer=vs.TRANSFER_BT601)
# setting color primaries info (to vs.PRIMARIES_BT470_BG), if it is not set.
if validate.primariesIsInvalid(clip):
  clip = core.std.SetFrameProps(clip=clip, _Primaries=vs.PRIMARIES_BT470_BG)
# setting color range to TV (limited) range.
clip = core.std.SetFrameProps(clip=clip, _ColorRange=vs.RANGE_LIMITED)
# making sure frame rate is set to 30fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=30, fpsden=1)
# making sure the detected scan type is set (detected: top field first)
clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_TOP) # tff
# Deinterlacing using QTGMC
clip = havsfunc.QTGMC(Input=clip, Preset="Fast", TFF=True) # new fps: 60
# Making sure content is preceived as frame based
clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_PROGRESSIVE) # progressive
clip = core.std.Crop(clip=clip, left=8, right=8, top=2, bottom=10)# cropping to 704x468
# Resizing using 10 - bicubic spline
clip = core.fmtc.resample(clip=clip, kernel="spline16", w=1440, h=1054, interlaced=False, interlacedd=False) # resolution 1440x1054 before YUV422P8 after YUV422P16
# adjusting output color from: YUV422P16 to YUV422P10 for ProResModel
clip = core.resize.Bicubic(clip=clip, format=vs.YUV422P10, range_s="limited", dither_type="error_diffusion")
# set output frame rate to 60fps (progressive)
clip = core.std.AssumeFPS(clip=clip, fpsnum=60, fpsden=1)
# output
clip.set_output()
I don't see any direct errors, might be a problem of BestSource processing RAW YUV video, so using another source filter and checking the Vappursynth preview before processing might help.
2nd job (2025-08-22@21_10_21_2610) wasn't processing in the debug output.

Looking at 'WIN 10 Laptop _ HybridDebugOutput.txt', I see three jobs started:
2025.08.20 - 17:49:03_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-20@17_48_57_2810
2025.08.20 - 18:15:55_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-20@18_15_45_4410
2025.08.20 - 18:35:29_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-20@18_35_22_0910
no looping.

Looking at 'Win 11 _ Slow When Choosing Parameters with some crashes as well.txt', I see
2025.08.23 - 10:27:25_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@10_26_13_3710, 2025-08-23@10_27_14_3410
2025.08.23 - 10:55:41_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@10_26_13_3710, 2025-08-23@10_27_14_3410
2025.08.23 - 15:34:23_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@10_27_14_3410
2025.08.23 - 16:50:19_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@16_50_15_3610
2025.08.23 - 18:08:08_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@18_08_04_3010
2025.08.23 - 21:03:45_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@21_03_35_5810
2025.08.23 - 22:01:41_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@21_03_35_5810, 2025-08-23@22_01_31_7210
2025.08.23 - 23:12:58_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@21_03_35_5810, 2025-08-23@22_01_31_7210
2025.08.23 - 23:48:09_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-23@22_01_31_7210
2025.08.24 - 08:56:01_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-24@08_55_56_3610
2025.08.24 - 10:29:39_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-24@08_55_56_3610, 2025-08-24@10_29_30_2210
2025.08.24 - 10:47:38_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-24@08_55_56_3610, 2025-08-24@10_29_30_2210
2025.08.24 - 12:04:47_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: startJobs: 2025-08-24@10_29_30_2210
there are some duplicates. Smile
Looking at what is happening, the strange thing is, I only see:
2025.08.23 - 10:55:42_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-23@10_26_13_3710
2025.08.23 - 15:34:23_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-23@10_27_14_3410
2025.08.23 - 16:50:20_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-23@16_50_15_3610
2025.08.23 - 18:08:08_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-23@18_08_04_3010
2025.08.23 - 19:36:54_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-23@19_36_49_5510
2025.08.23 - 23:12:59_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-23@21_03_35_5810
2025.08.23 - 23:48:09_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-23@22_01_31_7210
2025.08.24 - 08:51:11_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-24@08_51_02_5410
2025.08.24 - 10:47:38_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-24@08_55_56_3610
2025.08.24 - 12:04:47_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Client startJob: 2025-08-24@10_29_30_2210
so there should be no looping. Strange.
Looking at the finished jobs, I see:
2025.08.23 - 10:55:41_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-23@09_36_50_8710 finished
2025.08.23 - 15:34:23_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-23@10_26_13_3710 finished!
2025.08.23 - 16:16:02_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-23@10_27_14_3410 finished!
2025.08.23 - 17:29:52_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-23@16_50_15_3610 finished!
2025.08.23 - 18:23:57_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-23@18_08_04_3010 finished!
2025.08.23 - 23:12:58_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-23@19_36_49_5510 finished!
2025.08.23 - 23:48:09_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-23@21_03_35_5810 finished!
2025.08.24 - 02:05:28_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-23@22_01_31_7210 finished!
2025.08.24 - 10:47:38_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-24@08_51_02_5410 finished!
2025.08.24 - 12:04:47_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-24@08_55_56_3610 finished!
2025.08.24 - 12:09:47_Windows 11 Version 24H2 (64bit)_2025.05.18.2 - level 9: Job 2025-08-24@10_29_30_2210 finished!

=> I do not see any looping,.. are you sure there is looping and not just progress seemingly looping since it's shown per subjob?
(didn't bother looking for crashes)

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)