asp.net – 如何从SQL数据库流.flv文件

我想将.flv文件存储在数据库中,而不是在文件系统中.

这是我现在可以做的:
使用ffmpeg成功将.wmv和.mpeg转换为.flv.
将图像存储在sql Server中,并使用httphandler将其显示在我的页面上.
与.avi和.mpeg视频一样. (由用户的软件,如果他可以查看它)
如果文件位于文件系统中而不在数据库中,则在浏览器中播放.flv文件.

我不能做的是:
将.flv视频直接从数据库传输到JW Player. (存储为二进制数据)

我已经在互联网上搜索了两天,但我不能让它上班.感觉好像我几乎在那里. JW播放器打开并开始“缓冲”,但没有任何反应.

我知道没有简单的答案,但是如果有人以前做过或类似的事情,我想知道你是怎么做到的.我觉得我有太多的代码在这里发布.

提前致谢!

@R_403_323@

我得到它的工作,但我不知道如何有效率.从连接,效率,负载等方面来看,从文件系统流出的最好是从数据库.
我可以用一些指针就可以了!

我在这里使用JW Player,因此“swfobject.js”和“player.swf”

HttpHandler的:

public class ViewFilm : IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        try
        {
            // Check if id was given
            if (context.Request.QueryString["id"] != null)
            {
                string movId = context.Request.QueryString["id"];

                // Connect to DB and get the item id
                using (sqlConnection con = new sqlConnection(ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString))
                using (sqlCommand cmd = new sqlCommand("GetItem",con))
                {
                    cmd.CommandType = CommandType.StoredProcedure;
                    sqlParameter sqlParam = cmd.Parameters.Add("@itemId",sqlDbType.Int);
                    sqlParam.Value = movId;

                    con.Open();
                    using (sqlDataReader dr = cmd.ExecuteReader())
                    {
                        if (dr.HasRows)
                        {
                            dr.Read();
                            // Add HTTP header stuff: 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; }
    }
}

JavaScript的
功能将播放器添加到< div id =“video1”>并且可以称为例如当用户单击按钮时.

<script type='text/javascript' src='swfobject.js'></script>
<script type="text/javascript" language="javascript">
function vid() {
  var s1 = new SWFObject('player.swf','player1','480','270','9');
  s1.addParam('allowfullscreen','true');
  s1.addParam('allowscriptaccess','always');
  s1.addVariable('file',encodeURIComponent('ViewFilm.ashx?id=10'));
  s1.addVariable('type','video');
  s1.write(document.getElementById("video1"));
}
</script>

相关文章

项目要求通过网站上传大文件,比如视频文件,通过摸索实现了文件分片来上传,然后后台进行合并。 使用了...
安装新版本的Nginx(vim /etc/yum.repos.d/nginx.repo) [nginx-stable] name=nginx stable repo baseu...
什么是 SignalR&#160;ASP.NET Core ASP.NET Core SignalR 是一种开放源代码库,可简化将实时 web 功...
在Windows下使用Docker,我们选择Docker Desktop这个软件,非常方便。 ## Docker Desktop介绍及安装 Do...
项目开始设计的是运行在windows下,所以一开始采用的是windows服务模式来获取多媒体文件信息,后来要求...
银河麒麟高级服务器操作系统V10是针对企业级关键业务,适应虚拟化、云计算、大数据、工业互联网时代对主...