我要做一个 可以上传flv格式的 视频网站,请问要这么实现啊。 就是像土豆网或者ku6网 那样的,可以点击看视频的,然后上传视频的时候可以视频截图的。 高手指点啊!!!!!!

解决方案 »

  1.   

    我的资源里有:
    asp.net后台播放Flv视频Flvplayer.swf http://download.csdn.net/source/2324617
      

  2.   

    惯用吗??    还有没有其他的方法了啊。  这个是播放flv 格式的flash格式的视频播放器吗?
      

  3.   

      请问 用swfobject.js文件 怎么嵌套flash 播放器啊。 网上看了这个文件很牛,就是不知道具体做什么用的。谁能告诉一下啊
      

  4.   

    ffmpeg实现截图功能
    http://topic.csdn.net/u/20090519/16/805812ca-d9b1-4e63-bd00-34b867501f6e.html
    播放使用var s = new SWFObject("a.swf","mediaplayer","245","176","8");
    s.addParam("allowfullscreen","true");
      

  5.   

    请问能不能 下面那个 在详细点啊。 我找了个试了试 flash不出来啊。没反映的
      

  6.   

    我也是用flvplayer播放flv格式的视频,至于截图没弄过
      

  7.   

    <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %><!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>
        <a href="Default2.php">go</a>
        </div>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
        
        
        </form>
        <script type="text/javascript">
    var swf_width=240
    var swf_height=240
    var texts='flash'
    var files='http://localhost:2932/WebSite2/a.flv&IsAutoPlay=1'
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ swf_width +'" height="'+ swf_height +'">');
    document.write('<param name="movie" value="http://localhost:2932/WebSite2/flvplayer.swf"><param name="quality" value="high">');
    document.write('<param name="menu" value="false"><param name="allowFullScreen" value="true" />');
    document.write('<param name="FlashVars" value="vcastr_file='+files+'&vcastr_title='+texts+'">');
    document.write('<embed src="http://localhost:2932/WebSite2/flvplayer.swf" allowFullScreen="true" FlashVars="vcastr_file='+files+'&vcastr_title='+texts+'" menu="false" quality="high" width="'+ swf_width +'" height="'+ swf_height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); document.write('</object>');
    </script>
    </body>
    </html>然后再去下个楼上所说的flvplayer.swf 放到项目的根目录下就好了。
      

  8.   

    学学flex的吧,里边有一个SWFLoader对象,这个是专门用来读取swf文件的,一般他们的网站视频都是这个格式flv,你说的不对,flv是flash没有进行编译过的原始文件。所以你最好研究一下AS3
      

  9.   

    太局限了,前2天刚弄一个把上传的视频文件转换成Flv之后在播放,顺便截图的程序。
    要不给你!