The following warnings occurred: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Trying to access array offset on null - Line: 14 - File: inc/plugins/cookielaw.php(272) : eval()'d code PHP 8.3.12-nmm1 (Linux)
|
Encode says 130% complete for some reason and hasn't finished - 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: Encode says 130% complete for some reason and hasn't finished (/thread-3831.html) |
Encode says 130% complete for some reason and hasn't finished - lostsnowboardvideos - 22.08.2024 I am encoding an mkv input from a blu-ray disc and my input says it's 29.97fps/vfr, AVC with PCM audio. Total frame count is 67425 but debug output has it up to nearly 90000 even though output says 67425. Debug output attached and input clip sample linked. Input RE: Encode says 130% complete for some reason and hasn't finished - lostsnowboardvideos - 22.08.2024 Update: video encode crashed error: time codes not created. crashed at v2 time codes mp4fpsmod. Full debug attached. RE: Encode says 130% complete for some reason and hasn't finished - Selur - 23.08.2024 Quote:Update: video encode crashed error: time codes not created. crashed at v2 time codes mp4fpsmod.Not the encode, but the 2nd muxing call crashed. Quote:... input from a blu-ray disc ..enabling "Config->Internals->Handling->Ignore all input timecode" should fix the problem. Will try to add another workaround for 'strange flagged' content. VFR makes no sense for Blu-ray source content. Video (seems like someone deinterlaced telecined content instead of applying ivtc) Cu Selur RE: Encode says 130% complete for some reason and hasn't finished - lostsnowboardvideos - 23.08.2024 thank so much for the feedback! RE: Encode says 130% complete for some reason and hasn't finished - lostsnowboardvideos - 23.08.2024 The "ignore all input timecode" worked. No crash at 2nd muxing call. However, I applied the SelectEvery (no offsets, unsure how to use) and the job status still takes it to 200% and playback is slower than the original and so is the audio. Included the output file linked below. Debug attached. Input/Output RE: Encode says 130% complete for some reason and hasn't finished - Selur - 23.08.2024 SelectEvery without makes no sense. Will write something about SelectEvery later. RE: Encode says 130% complete for some reason and hasn't finished - Selur - 23.08.2024 see: http://www.vapoursynth.com/doc/functions/video/selectevery.html in short: Cycle: defines how large chunks that the content is split into are so a cyble of 10 would look at frames 0-9 10-19 .... Offsets: which frames to keep, given by their index in the chunk So with Cycle: "5" and Offsets: "0 1 2 4" you would drop frame 3 8 13 18 ... and keep the rest. To know what offsets you want, you look the source with SelectEvery deactivated and then look where you got duplicates if for example you look at the frame 10-14 and frame 11 is a duplicate, you set Offsets to "0 2 3 4" to only drop the frames 1 6 11 16 21 .... If there is a fixed pattern to duplicate frames, this is the fastest way to get rid of them. Cu Selur RE: Encode says 130% complete for some reason and hasn't finished - lostsnowboardvideos - 23.08.2024 Okay, thanks. Will give that a shot now. Could that be what is causing the clip to be doubled in length, 21 seconds to 42 seconds? Looked at 0-5, frames 1 3 5 appear to be duplicates RE: Encode says 130% complete for some reason and hasn't finished - Selur - 23.08.2024 Messed up time codes sure can cause this. RE: Encode says 130% complete for some reason and hasn't finished - Selur - 23.08.2024 Another side note: the container and streams fps int that file differs. Cu Selur Ps.: Uploaded a dev version which should detect the source as cfr. Will look into the frame count. => Mediainfo reports "Frame count : 658" which why Hybrid assumes that to be correct. (You can tell Hybrid the correct output frame count through Filtering->Misc->Overwrite Output->Frame count to". |