No response... 300 seconds, process likely hung - killing it

I’m getting this error on all my TVEverywhere recordings, can someone help me figure this out:

ERROR> → No response from process for 300 seconds, process likely hung - killing it
ERROR> → Process hung, killing process
ERROR> 2025-10-04T14:08:19 MCEBuddy.CommercialScan.Scanner → Comskip failed
ERROR> 2025-10-04T14:08:19 MCEBuddy.Engine.ConversionJob → Advertisement scan failed
INFORMATION> 2025-10-04T14:08:19 MCEBuddy.Engine.ConversionJob →

On Patrol Live S04E21 2025-10-03-2058.mpg-Convert to MP4-2025-10-04T13-53-54.log (636.5 KB)

mcebuddy.conf (6.6 KB)

comskip.ini (24.7 KB)

It looks like your Comskip process is hanging when trying to scan your TVEverywhere recordings, leading to the “No response… 300 seconds, process likely hung - killing it” error. This usually indicates an issue with Comskip itself or the video file it’s trying to process.

To help diagnose this, I would need to look at the logs. However, since I cannot directly access attachments, I’ll need you to tell me what you’ve already tried or what specific parts of the logs you think are most relevant.

In the meantime, here are some general suggestions that often resolve Comskip hanging issues:

  1. Check for Comskip updates: Ensure you’re using the latest version of Comskip that’s compatible with MCEBuddy.
  2. Test Comskip manually: Try running Comskip directly on one of the problematic TVEverywhere recording files from the command line. This can help isolate if the issue is with Comskip or how MCEBuddy is calling it.
  3. Simplify your comskip.ini: Temporarily try a very basic comskip.ini file to see if any advanced settings are causing the hang.
  4. Check for corrupt recordings: While less likely if it’s happening on all TVEverywhere recordings, a corrupt segment in a recording can sometimes cause Comskip to hang.
  5. Increase Comskip timeout: You can try increasing the ComskipTimeout setting in MCEBuddy, though 300 seconds is usually sufficient. This is more of a workaround than a fix.
  6. Review MCEBuddy log for earlier errors: Look for any errors or warnings before the “No response” message in the MCEBuddy log.

Can you describe what steps you’ve already taken or any observations you’ve made from the logs?

Hmm, that’s very weird, I don’t see a problem in the logs, there is output and activity but for some reason it’s not registering with the engine which leads it to think the process has hung (and it hasn’t).

Could you upload one of the original files which is exhibiting this problem. We will need to replicate this to debug why the activity is not registering.

I have uploaded the video mpg [using filesplitter] in the SCARNG folder.

I’m able to run it here without any issues, it processed without any errors.

I think your windows may be having a problem internally. Try rebooting your computer and see that fixes the issues.

Same issue after rebooting system.

ERROR> → No response from process for 300 seconds, process likely hung - killing it
ERROR> → Process hung, killing process
ERROR> 2025-10-07T10:49:46 MCEBuddy.CommercialScan.Scanner → Comskip failed
ERROR> 2025-10-07T10:49:46 MCEBuddy.Engine.ConversionJob → Advertisement scan failed
INFORMATION> 2025-10-07T10:49:46 MCEBuddy.Engine.ConversionJob →
→ Performance Metrics for the Current Conversion

On Patrol Live S04E22 2025-10-04-2058.mpg-Convert to MP4-2025-10-07T10-32-37.log (675.5 KB)

I’m not able to replicate the issue here so lets try a few things:

  1. I see you’ve the priority to “High”, try changing it back to Normal. That may be interfering with the communication between the processes and causing it appear that the app is unresponsive.

    Process Priority → High

  2. You may want to try a different computer

If none of those work then I think something has broken or hijacked the process system on your windows setup, it’s not routing the messages from one process to another which is why the engine is not receiving the messages from the other apps (Comskip), in which case you may need to reinstall windows.

I’m assuming you don’t have anything else that’s CPU or disk intensive to running at the same time.

Priority → Normal no difference. How can I completely uninstall and start anew?

Okay, I was able to run everything manually without MCEbuddy2x. Here is what I found:

  1. Comskip.exe “D:\My Videos\AR\On Patrol Live S04E26 2025-10-18-2058_original.mpg”
    Prodcued ‘On Patrol Live S04E26 2025-10-18-2058.edl (220 Bytes)
  2. Comskip produced the edl in the below format, which FFMPEG can’t use
Issue Comskip Produced EDL FFmpeg Needs
Format 1519.38 1560.12 0:25:19.38 0:26:00.12

So, I wrote a powershell script to convert the EDL to a format of HH:MM:SS.

$edlContent = Get-Content "D:\My videos\ar\On Patrol Live S04E26 2025-10-18-2058.edl"
$convertedEdl = @()
foreach ($line in $edlContent) {
    $parts = $line -split '\s+'
    if ($parts.Length -ge 2) {
        try {
            $startSec = [double]$parts[0]
            $endSec = [double]$parts[1]
            $startTime = [TimeSpan]::FromSeconds($startSec)
            $endTime = [TimeSpan]::FromSeconds($endSec)
            $newLine = "{0:hh\:mm\:ss\.ff} {1:hh\:mm\:ss\.ff} 1 0.0 COMMERCIAL" -f $startTime, $endTime
            $convertedEdl += $newLine
        } catch {
            Write-Host "Skipping invalid line: $line" -ForegroundColor Yellow
        }
    }
}
  1. My FFMPEG is missing -vf “edl_overlay” , why I don’t know. Will address this later.
    using the converted edl file I ran FFMPEG manually:
    Using ffmpeg version 8.0-essentials_build-www.gyan.dev Copyright (c) 2000-2025 the FFmpeg developers

ffmpeg -hwaccel auto -i “D:\My videos\ar\On Patrol Live S04E26 2025-10-18-2058.mpg” -vf “select=‘not(between(t,1519.38,1750.32)+between(t,2535.10,2806.27)+between(t,3442.84,3713.94)+between(t,4578.04,4854.32)+between(t,5601.83,5877.97)+between(t,6559.39,6830.66)+between(t,7746.77,8022.91)+between(t,8246.04,8331.69)+between(t,8534.13,8824.55)+between(t,9284.04,9555.21)+between(t,10034.46,10276.00)+between(t,10540.53,10650.94))’” -c:v h264_nvenc -preset fast -c:a aac “D:\My videos\ar\Clean_Show.mkv”

Clean_Show.edl (504 Bytes)

NOTE: My profile.conf is using [MKV Nividia]:
[MKV Nividia]
Description=HEVC in MKV (H.265/AC3) conversion using NVIDIA NVENC. Creates a smaller file (50% smaller than H.264) with comparable quality and much faster performance.
order=handbrake,ffmpeg
ffmpeg-general=-threads 0
ffmpeg-video=-ss 0 -tag:v hvc1 -vf yadif=0:-1:1,hqdn3d -vcodec hevc_nvenc -preset p4 -rc vbr -cq 26 -map 0:v -sn
ffmpeg-audio=-acodec ac3 -b:a 160k -map 0:a
ffmpeg-audioac3=-acodec ac3 -b:a 256k -map 0:a
ffmpeg-ext=.mkv
ffmpeg-audiodelay=skip
handbrake-general=–decomb --loose-anamorphic --verbose=2
handbrake-video=–start-at duration:0 -e nvenc_h265 --encoder-preset medium -q 26
handbrake-audio=-E ffac3 -R auto -B 160 -D 0 -a 1,2,3,4,5
handbrake-audioac3=-E ffac3 -R auto -B 256 -D 0 -a 1,2,3,4,5
handbrake-ext=.mkv
handbrake-audiodelay=skip
PreConversionCommercialRemover=true

Conclusion: Comskip works, albeit with some tweaks. With that being stated and showing my results–could the issue be with my profile.con [MKV Nivida]?
What about the ffmpeg and the edl overlay issue?

Also, is my FFMPEG version: gyan.dev’s 8.0-essentials build conflicting with the MCEBuddy2x installed folder FFMPEG: ffmpeg version N-118425-g33679f5325-20250205

Also, I notice COMSKIP.exe is not exiting when I run it manually. I beleive it is a none bug:

End-of-Processing Bug: Older versions (pre-0.82.010) hang at the very end after analysis. Your download (from GitHub’s latest win64.zip) should be a recent build, but confirm the version.

Comskip 0.83.001-20250228

RemoveCommercials.ps1 (5.5 KB)

Okay, without using MCEBuddy2.x , I have created a powershell script that works. Anyway you can see what I need to do to get MCEBuddy2.x to do the same?