【发布时间】:2023-04-06 06:14:02
【问题描述】:
我正在尝试使用库 fluent-ffmpeg 连接音频和视频,但它无法正常工作。谁能帮帮我?
var proc = ffmpeg(firstFile)
.input(secondFile)
.input(thirdFile)
.input("./musicas/1.wav")
//.input(...)
.on('end', function() {
console.log('files have been merged succesfully');
})
.on('error', function(err) {
console.log('an error happened: ' + err.message);
})
.mergeToFile(outPath);
【问题讨论】:
-
我可以合并两个视频,但我想在合并的视频中添加音频,但它不起作用
标签: node.js ffmpeg fluent-ffmpeg