我需要弄清楚如何授予 exec 写入权限。
var exec = require('child_process').exec;
exec('ffmpeg -i file.ogv -f mp4 file.mp4', function(err, stdout, stderr){
});
// ffmpeg converts one video file to another.
我怎样才能做到这一点?
我需要弄清楚如何授予 exec 写入权限。
var exec = require('child_process').exec;
exec('ffmpeg -i file.ogv -f mp4 file.mp4', function(err, stdout, stderr){
});
// ffmpeg converts one video file to another.
我怎样才能做到这一点?