12

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

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

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

我已经在互联网上搜索了两天,但我无法让它工作。感觉好像我快到了。JW 播放器打开并开始“缓冲”,但没有任何反应。

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

提前致谢!

4

3 回答 3

4

我让它工作,但我不知道它的效率如何。在连接、效率、负载等方面,从文件系统流式传输比从数据库流式传输更好吗?我可以在这方面使用一些指针!

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

http处理程序:

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>
于 2010-12-10T15:57:59.970 回答
2

不确定究竟如何从字面上获取“直接从数据库中流”,但是将 JW 播放器的源“文件”设置为“ServeFLV.aspx?id=123”,并让 ServeFLV.aspx 从数据库,并将它们写出没有标记的响应?

于 2010-12-09T19:35:12.340 回答
1

如果您使用的是 SQL Server 2008,则可以使用varbinary(MAX) FILESTREAM这将允许文件由数据库管理,但仍允许您从 .NET 访问 FileStream

于 2010-12-09T18:11:47.110 回答