我正在尝试制作一个mp4视频文件以流式传输到ios设备。我使用IIS服务器从域捕获https连接,然后反向代理到localhost上的express(nodejs)服务器。这是我的节点js:
var range = req.headers.range;
var contentType = _mime2.default.lookup(filename);
if (req.get('Range') == null){
console.log("hei");
res.status(200);
res.set('Connection', 'keep-alive');
res.set('Content-Type',contentType);
res.set('Content-Length', data.length);
res.set("Accept-Ranges", "bytes");
res.end(data)
}else{
var total = data.length;
var split = range.split(/[-=]/);
var ini = +split[1];
var end = split[2]?+split[2]:total-1;
var chunkSize = end - ini + 1;
if (parseInt(ini) >= total || parseInt(end) >= total) {
//Indicate the acceptable range.
res.status(416);
res.set("Content-Range",'bytes */' + total); // File size.
//Return the 416 'Requested Range Not Satisfiable'.
res.end();
}
res.status(206);
res.set('Connection', 'keep-alive');
res.set("Content-Range","bytes " + ini + "-" + end + "/" + total);
res.set("Accept-Ranges", "bytes");
res.set("Content-Length", chunkSize);
res.set("Content-Type", contentType);
res.end(data.slice(ini, chunkSize+ini));
}
}).catch(function (err) {
res.status(404);
res.set('Content-Type', 'text/plain');
res.end('File not found.');
});
[![使用firefox] [1]] [1]
不同浏览器的行为:
任何人都知道为什么IOS safari不喜欢这个?
(视频:格式:h.264,568x320,AAC,22050 hz,784.65 kbit / s,.mp4)
答案 0 :(得分:1)
回复Content-Type
不正确。它应该是video/mp4
。此外,还不清楚你的data
变量来自哪里,但你可能会做这样的事情:
res.status(206);
res.set('Connection', 'keep-alive');
res.set("Content-Range","bytes " + ini + "-" + end + "/" + total);
res.set("Accept-Ranges", "bytes");
res.set("Content-Length", chunkSize);
res.set("Content-Type", contentType);
fs.createReadStream(filename, { start: ini, end: end }).pipe(res)
您不需要将整个文件缓冲区放在内存中。除此之外,您可能还需要在同一请求中处理多个字节范围。请求Range
标头的值为0-9,50-499,1000-
的位置。在这些情况下,您需要回复multipart/byteranges
回复。