4

我在节点中使用 fluent-ffmpeg 和 ffmpeg:

var ffmpeg = require('fluent-ffmpeg');
var src = "http://upload.wikimedia.org/wikipedia/commons/7/79/Big_Buck_Bunny_small.ogv";
ffmpeg(src)
.on('filenames', function(filenames) {
    console.log('Will generate ' + filenames.join(', ') + ' into tempfiles.')
})
.on('end', function() {
    console.log('1 Screenshot successfully taken');

})
.on('error', function(err, stdout, stderr) {
console.log("ffmpeg stdout:\n" + stdout);
console.log("ffmpeg stderr:\n" + stderr);
})
.screenshots({
    filename: randomResult,
    timemarks: [520.929831],
    folder: '/'
});

通常,拍摄一张缩略图需要 2-3 秒。我需要它是 0.5-1 秒进行实时开发。我的意思是,这里有什么问题 - 在我的计算机上下载单个 png 文件需要不到 2-3 秒才能完成,为什么 ffmpeg 滞后这么多?似乎有些不对劲。

4

1 回答 1

2

根据 fluent-ffmpeg文档“它不适用于输入流。” 所以我怀疑整个文件正在尝试加载。

您可以尝试使用 -ss 开关直接将 ffmpeg 作为子进程运行,如本文所述这应该会影响你的表现。

于 2016-03-18T17:15:00.263 回答