为什么在 node.js 中使用 exec:
child = exec("avconv -i " + result.params.fullDestinationFilename + " -ab 128k -vcodec libx264 -vb 2000k -r 24 -s 1280x720 " + convertedFileName720p + ".mp4", function (error, stdout, stderr) {
sys.print('stdout: ' + stdout);
sys.print('stderr: ' + stderr);
if (error !== null) {
console.log('exec error: ' + error);
}
console.log("CONVERTED!");
});
我收到一个错误:
exec error: Error: Command failed: /bin/sh: avconv: command not found
在bash中我可以正常执行。对于 node.js 开发,我使用 nodeeclipse。