我正在尝试流式传输MP4视频,因为它是从网络服务器编码的。我相信我使用了适当的标志,但它无法正常工作。当我从流中下载视频并使用VLC打开它时,它会正确显示持续时间。由于套接字不可搜索,我假设它将元数据写入结束?我的Chrome浏览器始终显示8秒的持续时间。前8秒以正常速度播放,但之后暂停按钮变为播放按钮,视频播放速度非常快,可能与收到的速度一样快。但是音频以正常速度播放。我试过了document.getElementById('myVid').duration = 20000
,但这是一个只读字段。
我想知道,无论如何要在HTTP标头中以任何其他方式明确说明持续时间吗?我找不到任何关于它的文档。
ffmpeg -i - -vcodec libx264 -acodec libvo_aacenc -ar 44100 -ac 2 -ab 128000 -f mp4 -movflags frag_keyframe+faststart pipe:1 -fflags +genpts -re -profile baseline -level 30 -preset fast
对于那些认为与编程不相关的选民来说,我在自己编写的服务器中使用它,我需要通过JavaScript以编程方式设置持续时间或设置HTTP标头。我相信它可能与ffmpeg或http标头有关,这就是我在这里发布的原因。
app.get("/video/*", function(req,res){
res.writeHead(200, {
'Content-Type': 'video/mp4',
});
var dir = req.url.split("/").splice(2).join("/");
var buf = new Buffer(dir, 'base64');
var src = buf.toString();
var Transcoder = require('stream-transcoder');
var stream = fs.createReadStream(src);
// I added my own flags to this module, they are at below:
new Transcoder(stream)
.videoCodec('libx264')
.audioCodec("libvo_aacenc")
.sampleRate(44100)
.channels(2)
.audioBitrate(128 * 1000)
.format('mp4')
.on('finish', function() {
console.log("finished");
})
.stream().pipe(res);
});
exec函数在该流转码器模块中,
a.push("-fflags");
a.push("+genpts");
a.push("-re");
a.push("-profile");
a.push("baseline");
a.push("-level");
a.push("30");
a.push("-preset");
a.push("fast");
a.push("-strict");
a.push("experimental");
a.push("-frag_duration");
a.push("" + 2 * (1000 * 1000));
var child = spawn('ffmpeg', a, {
cwd: os.tmpdir()
});
答案 0 :(得分:3)
我相信X-Content-Duration
标题是你需要的。
Mozilla documentation on X-Content-Duration
*
*文档讨论了OGG格式,但the principle applies to other video formats