This repository was archived by the owner on May 22, 2025. It is now read-only.

Description
Version information
- fluent-ffmpeg version: 2.1.2
- ffmpeg version: 4.2
- OS: Win10
Code to reproduce
await ffprobe('input.mp4')
This sometimes never resolves.
(note: if the problem only happens with some inputs, include a link to such an input file)
It's unpredictable. Sometimes it works with same files.
Expected results
Should work as usual.
Observed results
Sometimes ffprobe never resolves
Checklist
I think the issue is that the process (ffprobe.exe spawned from node) is for some reason not exiting (ever), and thus leaving the code in a hung state.
I've come up with a hacky solution that makes it work in the linked PR as a demo where problem exists.