是否可以将多个文件作为输入添加到fluent-ffmpeg并获取所有提供文件的输出..?
修改1:
var commonPath = __dirname + '/path/to/file/';
ffmpeg()
.input(commonPath + 'file1.mp4')
.output(commonPath + 'newFile1.avi')
.toFormat('avi')
.input(commonPath + 'file2.mp4')
.output(commonPath + 'newFile2.avi')
.toFormat('avi')
.on('error',function(err){
console.log(err);
})
.run();
答案 0 :(得分:0)
是的,如果您浏览fluent-ffmpeg
的文档,则会在那里指定您可以使用.input()
和.output()
添加多个输入和输出。