nodejs进行视频读取时不能像读取图片之类的一次性读取,而是必须读取一部分返回一部分,这样客户端的播放才会边缓冲边播放,而不必等待全部缓冲完再播放。
老规矩,直接贴代码讲解:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | var fs = require( 'fs' ); function readBigFileEntry(filename, response) { path.exists(filename, function (exists) { if (!filename || !exists) { response.writeHead(404); response.end(); return ; } var readStream = fs.ReadStream(filename); var contentType = 'none' ; var ext = path.extname(filename); switch (ext) { case ".flv" : contentType = "video/flv" ; break ; } response.writeHead(200, { 'Content-Type' : contentType, 'Accept-Ranges' : 'bytes' , 'Server' : 'Microsoft-IIS/7.5' , 'X-Powered-By' : 'ASP.NET' }); readStream.on( 'close' , function () { response.end(); console.log( "Stream finished." ); }); readStream.pipe(response); }); } |
通过fs模块的ReadStream方法,拿到视频流,然后绑定关闭事件:当流读取到结尾的时候结束response请求,最后通过pipe方法进行小块小块的读取。这里的head信息不能添加Content-Length属性,因为必须分段读取,如果加了这个属性,浏览器就会以为请求结束了从而关闭请求。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
转自https://www.jb51.net/article/130215.htm