Computer >> Máy Tính >  >> Lập trình >> HTML

Truyền tệp video sang trình phát video HTML5 với Node.js để các điều khiển video tiếp tục hoạt động


Sử dụng createReadStream để gửi phần được yêu cầu đến máy khách. Lời gọi hàm createReadStream () sẽ cung cấp cho bạn một luồng có thể đọc được.

Ví dụ

Sau đây là mã -

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);
});