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.

[HELP] Job not completing
#2
Looking at the debug outpu,..

Hybrid is processing job: 2021-12-10@14_52_32_8510

First it's starting subjob 2021-12-10@14_52_32_8510_01_audio
"/Applications/Hybrid.app/Contents/MacOS/ffmpeg" -y -threads 8 -ignore_editlist true -i "/Volumes/Drobo/Hybrid/Hybrid-OUT/Producer-DVD.mov" -map 0:1 -vn -sn -ac 2 -ar 48000 -acodec pcm_s16le -f wav -map_metadata -1 -metadata encoding_tool="Hybrid 2021.12.05.1" "/Volumes/Drobo/Hybrid/Hybrid-Temp/iId_8_aid_0_2021-12-10@14_52_32_8510_01.wav"
which finished after 00:00:00.811 and created:
/Volumes/Drobo/Hybrid/Hybrid-Temp/iId_8_aid_0_2021-12-10@14_52_32_8510_01.wav (236.033 MB)
Then Hybrid starts subjob 2021-12-10@14_52_32_8510_02_create, which creates "Volumes/Drobo/Hybrid/Hybrid-Temp/encodingTempSynthSkript_2021-12-10@14_52_32_8510.vpy" with the following content:
# Imports
import os
import sys
import vapoursynth as vs
# getting Vapoursynth core
core = vs.core
# Import scripts folder
scriptPath = '/Applications/Hybrid.app/Contents/MacOS/vsscripts'
sys.path.insert(0, os.path.abspath(scriptPath))
# Import scripts
import edi_rpow2
import havsfunc
import G41Fun
# source: '/Volumes/Drobo/Hybrid/Hybrid-OUT/Producer-DVD.mov'
# current color space: YUV422P10, bit depth: 10, resolution: 1024x576, fps: 23.976, color matrix: 709, yuv luminance scale: limited, scanorder: progressive
# Loading /Volumes/Drobo/Hybrid/Hybrid-OUT/Producer-DVD.mov using LWLibavSource
clip = core.lsmas.LWLibavSource(source="/Volumes/Drobo/Hybrid/Hybrid-OUT/Producer-DVD.mov", format="YUV422P10", cache=0, fpsnum=24000, fpsden=1001, prefer_hw=0)
# making sure input color matrix is set as 709
clip = core.resize.Bicubic(clip, matrix_in_s="709",range_s="limited")
# making sure frame rate is set to 23.976
clip = core.std.AssumeFPS(clip=clip, fpsnum=24000, fpsden=1001)
# Setting color range to TV (limited) range.
clip = core.std.SetFrameProp(clip=clip, prop="_ColorRange", intval=1)
# denoising using KNLMeansCL
clip = core.knlm.KNLMeansCL(clip=clip)
# sharpening using DetailSharpen
clip = G41Fun.DetailSharpen(clip=clip)
clip = havsfunc.EdgeCleaner(c=clip, strength=5, smode=1)
# resizing using ZNEDI3
clip = edi_rpow2.nnedi3_rpow2(clip=clip, rfactor=2, nns=4) # 2048x1152
# adjusting resizing
clip = core.fmtc.resample(clip=clip, w=1920, h=1080, kernel="lanczos", interlaced=False, interlacedd=False)
# adjusting output color from: YUV422P16 to YUV422P10 for ProResModel
clip = core.resize.Bicubic(clip=clip, format=vs.YUV422P10, range_s="limited")
# set output frame rate to 23.976fps
clip = core.std.AssumeFPS(clip=clip, fpsnum=24000, fpsden=1001)
# Output
clip.set_output()
Then Hybrid start subjob 2021-12-10@14_52_32_8510_03_video:
"/usr/local/bin/vspipe" "/Volumes/Drobo/Hybrid/Hybrid-Temp/encodingTempSynthSkript_2021-12-10@14_52_32_8510.vpy" - -c y4m | "/Applications/Hybrid.app/Contents/MacOS/ffmpeg" -y -noautorotate -nostdin -threads 8 -f yuv4mpegpipe -i - -an -sn -vf zscale=rangein=tv:range=tv -pix_fmt yuv422p10le -strict -1 -vsync 0  -vcodec prores_ks -profile:v 2 -vtag apcn -metadata encoding_tool="Hybrid 2021.12.05.1" -f mov "/Volumes/Drobo/Hybrid/Hybrid-Temp/Producer-1080_2021-12-10@14_52_32_8510_03.mov
which abort with FFMpeg complaining about:
[yuv4mpegpipe @ 0x7f89170041c0] Header too large.
pipe:: Invalid argument
So something with the Vapoursynth script is wrong.
-> Did you check the Vapoursynth Preview? My guess is that it should show an error.

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


Messages In This Thread
Job not completing - by Miranda - 10.12.2021, 16:55
RE: Job not completing - by Selur - 10.12.2021, 17:13
RE: Job not completing - by Miranda - 10.12.2021, 17:17
RE: Job not completing - by Selur - 10.12.2021, 17:26

Forum Jump:


Users browsing this thread: 1 Guest(s)