child_process.exec未在路径中找到cmd

时间:2017-12-18 22:58:12

标签: node.js cmd ffmpeg path child-process

所以我安装了ffmpeg并将其添加到我的路径中 如果我在cmd.exe中运行ffmpeg,它将运行ffmpeg.exe。

但是当我使用它时:

const { exec } = require('child_process');

await asyncExec(`ffmpeg -i ${filename}%05d.png ${aviname}`);
//Note: the variables are filled in

我收到此错误:

Command failed: ffmpeg -i thing%05d.png thing.avi
'ffmpeg' is not recognized as an internal or external command,\r\noperable program or batch file.

我不明白为什么会这样开心。我只是在VSCode调试中运行这个应用程序。

编辑:asyncExec就是这个功能:

const asyncExec = text => new Promise((res, rej) => {
    exec(text, (err, result) => {
        if (err) {
            rej(err);
        } else {
            res(result);
        }
    });
});

1 个答案:

答案 0 :(得分:0)

重新启动Visual Studio代码后,它再次运行。怪异。