Я транслирую .flv видео с моего SQL Server с кодом ниже.Но насколько я понимаю, все видео будет загружено в память перед воспроизведением.Я хотел бы добавить CommandBehavior.SequentialAccess в SQLDataReader ... но я не могу заставить его работать.
Пожалуйста, помогите мне здесь.Если бы вы могли привести рабочий пример, который применим к моему, я был бы счастлив.Код Psuedo будет второй лучшей альтернативой.Любые указатели приветствуются.
Вот мой httpHandler
public class ViewFilm : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
try
{
// Check if video id was given
if (context.Request.QueryString["id"] != null)
{
string video_ID = context.Request.QueryString["id"];
// Connect to DB and get the video
using (SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString))
using (SqlCommand cmd = new SqlCommand("GetVideo", con))
{
cmd.CommandType = CommandType.StoredProcedure;
SqlParameter sqlParam = cmd.Parameters.Add("@videoId", SqlDbType.Int);
sqlParam.Value = video_ID;
con.Open();
using (SqlDataReader dr = cmd.ExecuteReader())
{
if (dr.HasRows)
{
dr.Read();
// Add HTTP header: cache, content type and length
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.Cache.SetLastModified(DateTime.Now);
context.Response.AppendHeader("Content-Type", "video/x-flv");
context.Response.AppendHeader("Content-Length", ((byte[])dr["data"]).Length.ToString());
context.Response.BinaryWrite((byte[])dr["data"]);
}
}
}
}
}
catch (Exception ex)
{
throw new Exception(ex.ToString());
}
}
public bool IsReusable
{
get { return false; }
}
}