ASP.NETFLV处理流代码

1 using  System;
 2 using  System.IO;
 3 using  System.Web;
 4
 5
 6 ExpandedBlockStart.gifContractedBlock.gif /**/ /// <summary>
 7/// Summary description for FLVStreaming
 8/// </summary>

 9 public   class  FLVStreaming : IHttpHandler
10 ExpandedBlockStart.gifContractedBlock.gif {
11    private static readonly byte[] _flvheader = HexToByte("464C5601010000000900000009"); //"FLV\x1\x1\0\0\0\x9\0\0\0\x9"
12
13    public FLVStreaming()
14ExpandedSubBlockStart.gifContractedSubBlock.gif    {
15    }

16
17    public void ProcessRequest(HttpContext context)
18ExpandedSubBlockStart.gifContractedSubBlock.gif    {
19        try
20ExpandedSubBlockStart.gifContractedSubBlock.gif        {
21            int pos;
22            int length;
23
24            // Check start parameter if present
25            string filename = Path.GetFileName(context.Request.FilePath);
26
27            using (FileStream fs = new FileStream(context.Server.MapPath(filename), FileMode.Open, FileAccess.Read, FileShare.Read))
28ExpandedSubBlockStart.gifContractedSubBlock.gif            {
29                string qs = context.Request.Params["start"];
30
31                if (string.IsNullOrEmpty(qs))
32ExpandedSubBlockStart.gifContractedSubBlock.gif                {
33                    pos = 0;
34                    length = Convert.ToInt32(fs.Length);
35                }

36                else
37ExpandedSubBlockStart.gifContractedSubBlock.gif                {
38                    pos = Convert.ToInt32(qs);
39                    length = Convert.ToInt32(fs.Length - pos) + _flvheader.Length;
40                }

41
42                // Add HTTP header stuff: cache, content type and length        
43                context.Response.Cache.SetCacheability(HttpCacheability.Public);
44                context.Response.Cache.SetLastModified(DateTime.Now);
45
46                context.Response.AppendHeader("Content-Type""video/x-flv");
47                context.Response.AppendHeader("Content-Length", length.ToString());
48
49                // Append FLV header when sending partial file
50                if (pos > 0)
51ExpandedSubBlockStart.gifContractedSubBlock.gif                {
52                    context.Response.OutputStream.Write(_flvheader, 0, _flvheader.Length);
53                    fs.Position = pos;
54                }

55
56                // Read buffer and write stream to the response stream
57                const int buffersize = 16384;
58                byte[] buffer = new byte[buffersize];
59                
60                int count = fs.Read(buffer, 0, buffersize);
61                while (count > 0)
62ExpandedSubBlockStart.gifContractedSubBlock.gif                {
63                    if (context.Response.IsClientConnected)
64ExpandedSubBlockStart.gifContractedSubBlock.gif                    {
65                        context.Response.OutputStream.Write(buffer, 0, count);
66                        count = fs.Read(buffer, 0, buffersize);
67                    }

68                    else
69ExpandedSubBlockStart.gifContractedSubBlock.gif                    {
70                        count = -1;
71                    }

72                }

73            }

74        }

75        catch (Exception ex)
76ExpandedSubBlockStart.gifContractedSubBlock.gif        {
77            System.Diagnostics.Debug.WriteLine(ex.ToString());
78        }

79    }

80
81    public bool IsReusable
82ExpandedSubBlockStart.gifContractedSubBlock.gif    {
83ExpandedSubBlockStart.gifContractedSubBlock.gif        get return true; }
84    }

85
86    private static byte[] HexToByte(string hexString)
87ExpandedSubBlockStart.gifContractedSubBlock.gif    {
88        byte[] returnBytes = new byte[hexString.Length / 2];
89        for (int i = 0; i < returnBytes.Length; i++)
90            returnBytes[i] = Convert.ToByte(hexString.Substring(i * 22), 16);
91        return returnBytes;
92    }

93
94}

95 修改配置文件,运行页面即可调出视频,

转载于:https://www.cnblogs.com/appleseed/archive/2008/08/07/1263146.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值