使用createReadStream將請求的部分傳送到客戶端。函數呼叫 createReadStream() 將為您提供一個可讀的流。
以下是程式碼 -
stream = fs.createReadStream(path); stream.on('open', function () { res.writeHead(206,{ "Content-Range":"bytes " + begin + "-" + end + "/" +total, "Accept-Ranges":"bytes", "Content-Length":chunksize, "Content-Type":"new/mp4" }); stream.pipe(res); });
以上是使用Node.js將視訊檔案串流傳輸到HTML5視訊播放器,以便視訊控制繼續運作的詳細內容。更多資訊請關注PHP中文網其他相關文章!