有时在Windows上正常转换失败并显示错误1

时间:2019-05-23 21:20:40

标签: node.js ffmpeg

我从节点(ffmpeg.exe运行spawn(),有时(不是随机的,但取决于具体日期)在Windows上失败,错误为1

我使用非常基本的语法:

const outputPath = getTempFolder() + path.sep + 'video.mp4';
const command = spawn(ffmpegPath, [
  '-i',
  getTempFolder() + path.sep + 'video.webm',
  '-y',
  outputPath
]);

有人知道为什么会发生这种情况以及最终如何对其进行调试吗?谢谢!

0 个答案:

没有答案