我从节点(ffmpeg.exe
运行spawn()
,有时(不是随机的,但取决于具体日期)在Windows上失败,错误为1
我使用非常基本的语法:
const outputPath = getTempFolder() + path.sep + 'video.mp4';
const command = spawn(ffmpegPath, [
'-i',
getTempFolder() + path.sep + 'video.webm',
'-y',
outputPath
]);
有人知道为什么会发生这种情况以及最终如何对其进行调试吗?谢谢!