-
-
Save vluzrmos/d849d67cfd9f44e5f0b6f52e2a374c2e to your computer and use it in GitHub Desktop.
Laravel response macro for streamed responses with seeking support (with bug fixes & usage example)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Response::macro('streamed', function($type, $size, $name, $callback) { | |
$start = 0; | |
$length = $size; | |
$status = 200; | |
$headers = [ | |
'Content-Type' => $type, | |
'Content-Length' => $size, | |
'Accept-Ranges' => 'bytes' | |
]; | |
if (false !== $range = Request::server('HTTP_RANGE', false)) { | |
list($param, $range) = explode('=', $range); | |
if (strtolower(trim($param)) !== 'bytes') { | |
header('HTTP/1.1 400 Invalid Request'); | |
exit; | |
} | |
list($from, $to) = explode('-', $range); | |
if ($from === '') { | |
$end = $size - 1; | |
$start = $end - intval($from); | |
} elseif ($to === '') { | |
$start = intval($from); | |
$end = $size - 1; | |
} else { | |
$start = intval($from); | |
$end = intval($to); | |
} | |
if ($end >= $length) { | |
$end = $length - 1; | |
} | |
$length = $end - $start + 1; | |
$status = 206; | |
$headers['Content-Range'] = sprintf('bytes %d-%d/%d', $start, $end, $size); | |
$headers['Content-Length'] = $length; | |
} | |
return Response::stream(function() use ($start, $length, $callback) { | |
call_user_func($callback, $start, $length); | |
}, $status, $headers); | |
}); | |
// Usage | |
$path = storage_path('secured_video.mp4'); | |
$name = basename($path); | |
$size = File::size($path); | |
$type = 'video/mp4'; | |
return Response::streamed($type, $size, $name, function($offset, $length) use ($path) { | |
$stream = GuzzleHttp\Stream\Stream::factory(fopen($path, 'r')); | |
$stream->seek($offset); | |
while (!$stream->eof()) { | |
echo $stream->read($length); | |
} | |
$stream->close(); | |
}); |
Thanks! It saved my time implementing video streaming in my Laravel 5.8 project.
I made slight changes since I couldn't find GuzzleHttp\Stream\Stream
and needed dynamic mime type:
$filename = 'secured_video.mp4'
$size = Storage::size($filename);
$type = Storage::mimeType($filename);
$path = Storage::disk('local')->path($filename);
$name = basename($path);
return Response::streamed($type, $size, $name, function($offset, $length) use ($path) {
$stream = \GuzzleHttp\Psr7\stream_for(fopen($path, 'r'));
$stream->seek($offset);
while (!$stream->eof()) {
echo $stream->read($length);
}
$stream->close();
});
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
+1
Muchas gracias! Me sirvió perfectamente.