ASP.NET - FLV播放器

时间:2010-11-10 18:32:47

标签: asp.net flv embedded-flashplayer

对于一家公司,我们正在制作2个不同的网站,现在其中一个网站有一个flv播放器,并使用以下网址从本地flv文件流向客户:http://www.aspnetflashvideo.com

现在在第二个网站上我们还想要一个flv播放器,但是这个没有本地文件,它应该将flv文件从其他网站流式传输到第二个网站的用户。

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register Assembly="ASPNetFlashVideo.NET3" Namespace="ASPNetFlashVideo" TagPrefix="ASPNetFlashVideo" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <ASPNetFlashVideo:FlashVideo ID="FlashVideo1" runat="server" 
            VideoURL="http://flv.dumpert.nl/7649709f_YTDL_1.flv.flv" >

        </ASPNetFlashVideo:FlashVideo>
    </div>
    </form>
</body>
</html>

这可能吗?怎么样?因为它似乎不适用于webpart。

1 个答案:

答案 0 :(得分:0)

我可能完全偏离此处,但看起来您的视频网址有两次文件扩展名...尝试:

<ASPNetFlashVideo:FlashVideo ID="FlashVideo1" runat="server" 
        VideoURL="http://flv.dumpert.nl/7649709f_YTDL_1.flv" >
</ASPNetFlashVideo:FlashVideo>