Often when serving video or audio on a web site, you want to allow the visitor to scrub through the content. This is tricky to achieve through Laravel, as it requires support for the "Range" request header to properly seek to the correct position of a file stream before passing it along. Some form of wrapper function for Response::stream that could handle this would be a very useful addition to Laravels functionality.
Often when serving video or audio on a web site, you want to allow the visitor to scrub through the content. This is tricky to achieve through Laravel, as it requires support for the "Range" request header to properly seek to the correct position of a file stream before passing it along. Some form of wrapper function for Response::stream that could handle this would be a very useful addition to Laravels functionality.