Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Last active July 17, 2020 22:06
Show Gist options
  • Save BetterProgramming/3bf5d66b0285a2690de684d46c4cabb4 to your computer and use it in GitHub Desktop.
Save BetterProgramming/3bf5d66b0285a2690de684d46c4cabb4 to your computer and use it in GitHub Desktop.
app.get('/video', function(req, res) {
const path = 'assets/sample.mp4'
const stat = fs.statSync(path)
const fileSize = stat.size
const range = req.headers.range
if (range) {
const parts = range.replace(/bytes=/, "").split("-")
const start = parseInt(parts[0], 10)
const end = parts[1]
? parseInt(parts[1], 10)
: fileSize-1
const chunksize = (end-start)+1
const file = fs.createReadStream(path, {start, end})
const head = {
'Content-Range': `bytes ${start}-${end}/${fileSize}`,
'Accept-Ranges': 'bytes',
'Content-Length': chunksize,
'Content-Type': 'video/mp4',
}
res.writeHead(206, head);
file.pipe(res);
} else {
const head = {
'Content-Length': fileSize,
'Content-Type': 'video/mp4',
}
res.writeHead(200, head)
fs.createReadStream(path).pipe(res)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment