Closed
Description
I know there is global ffmpeg.terminate
, but is there a way (maybe using send
?) to "abort" a single ffmpeg.exec(cmd)
?
It can for ex be an AbortController
signal like in fetch:
const controller = new AbortController();
ffmpeg.exec(cmd, -1, {
signal: controller.signal
})
// later...
controller.abort();
Metadata
Metadata
Assignees
Labels
No labels