2015-03-08
1.0.0
Bruno Martinho
9.0.0.19
SQL Server
.NET
Libraries
[Overview]
Extension to stream binary data as an HttpContext Response. The response won't return the regular 200 status code, it will return a 206 (partial content) feeding the browser with data in chunks. This allow to stream video in mp4 to a HTML5 player having the video binary stored in the database and not in the filesystem.
[Detail]
Extension to stream binary data as an HttpContext Response. The response won't return the regular 200 status code, it will return a 206 (partial content) feeding the browser with data in chunks. This allow to stream video in mp4 to a HTML5 player having the video binary stored in the database and not in the filesystem.
The code is based on the post Tracking and Resuming Large File Downloads in ASP.NET by Alexander Schaaf. More details here.
To stream a mp4 video, create a webscreen that has a video identifier input. Use it to retrieve the video binary data from the database and use the action StreamBinaryData.