Encoding doesn't start - "missing input" - Printable Version +- Selur's Little Message Board (https://forum.selur.net) +-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html) +--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html) +--- Thread: Encoding doesn't start - "missing input" (/thread-2267.html) |
Encoding doesn't start - "missing input" - kocane - 04.02.2022 Sometimes I can encode just fine but when making adjustment, deleting, re-adding and starting jobs it simply does not start and looks like on screenshot belowl. When I check the debug log (attached) I see that it complains about a missing input file which seemingly is pointing towards one of the autogenerated files from a previous job. I can't really figure it out, what I'm doing wrong. I'm using Hybrid 2021.12.10.1 apparently (despite having downloaded and installed the newest version, the exe says modified 12-12-2012 but the version remains 12.10.1) on Windows 11 x64 21H2. I've tried reinstalling Hybrid, clearing settings etc and ensuring the folder in roaming appdata is gone. Thanks EDIT: Um, after some minutes of nothing it suddenly started encoding. I 've sworn I've waited longer the other times I experienced this issue, where nothing happens. 2022.02.04 - 12:59:33_Windows 10 Version 2009 (64bit)_2021.12.10.1 - level 9: Setting m_startingJobs(1) to FALSE RE: Encoding doesn't start - "missing input" - Selur - 04.02.2022 Vapoursynth script: # Imports Encoding call: C:\Program Files\Hybrid\64bit\Vapoursynth\vspipe.exe" "X:\Analogue\Video\Encoded\Temp\encodingTempSynthSkript_2022-02-04@12_51_21_6310.vpy" - -c y4m | "C:\Program Files\Hybrid\64bit\x264.exe" --preset slow --crf 20.00 --profile high422 --level 4.1 --sync-lookahead 18 --qcomp 0.80 --ipratio 1.10 --pbratio 1.10 --no-dct-decimate --psy-rd 1.00:0.25 --aq-strength 0.50 --vbv-maxrate 50000 --vbv-bufsize 187500 --deadzone-inter 6 --deadzone-intra 6 --sar 1:1 --deblock -2:-2 --non-deterministic --range tv --colormatrix bt470bg --demuxer y4m --input-range tv --fps 50/1 --output-csp i422 --output-depth 8 --output "X:\Analogue\Video\Encoded\Temp\2022-02-04@12_51_21_6310_02.264" - No clue why it would take 4min on your system to start the encoding. Wild guess would be that you got some anti virus software or similar running which is interfering with the processing. Cu Selur RE: Encoding doesn't start - "missing input" - kocane - 04.02.2022 Odd.. the source here had been encoded with Lagarith. With sources that use HuffYUV it hasn't happen yet... It spends a lot of time creating a .ffindex file, which didnt occur with Lagarith - why can that be? RE: Encoding doesn't start - "missing input" - Selur - 04.02.2022 Different source filter. FFVideoSource uses ffindex files. LWLibavSource (in Hybrid) only is used with index files in memory. If the source is on a network drive it can slow down things,... ---- btw. the missing input stuff in the debug output is from the job processing which checked whether another subjob could be started, but wasn't since the output of the encoding wasn't there. RE: Encoding doesn't start - "missing input" - kocane - 04.02.2022 (04.02.2022, 20:21)Selur Wrote: Different source filter. Could imagine it would be slow on a network drive. I just threw the file onto my SSD instead of the HDD and while it's faster it still takes a while. Is that just how it is with HuffYUV or can it be adjusted? Quote:btw. the missing input stuff in the debug output is from the job processing which checked whether another subjob could be started, but wasn't since the output of the encoding wasn't there. Is that a misconfiguration on my part? RE: Encoding doesn't start - "missing input" - Selur - 04.02.2022 Quote:Is that a misconfiguration on my part?No, that's a normal behaviour. Hybrid checks the sub-jobs and avoids starting those where the inputs are missing. Quote:Is that just how it is with HuffYUV or can it be adjusted?No clue, it's normal that the progress indication in Hybrid takes a bit since: 1. when LWLibavSource is used it still needs to index the file, it just keeps the index in memory and usually can start without having to index the whole file. 2. encoders usually request a bunch of frames (lookaheads) before they start encoding 3. Hybrid should only start showing a progress if the progress > 1%. 4. depending on the filters, an the order and amount in which they requires frames, especially the start can take a bit. (especially on hdds this will slow things down) 5. If anti virus or similar software are also trying to check the data all the above steps will be slowed. Still the time to start seems unusually long, but I have not clue what's causing it on your system. If you think Hybrid is not starting checking the cpu usage is usually a good indicator,.. Cu Selur |