没做过。应该是flash?
期待高人

解决方案 »

  1.   

    youku:http://static.youku.com/v1.0.0233/v/swf/qplayer.swf?VideoIDS=影片定位地址&winType=interior&isShowRelatedVideo=false&showAd=0tudou:http://ui.tudou.com/bin/player.swf?iid=影片定位地址注: tudou 的播放器有背景, 需用 margin 调整位置.
      

  2.   

    楼上您说的方式和我直接在浏览器中输入 http://player.youku.com/player.php/sid/9131933/v.swf是一样的效果哦而我像要的是通过我上面的代码中的object和embed设置如何达到可以点击全屏观看,
      

  3.   

    flash 播放器在地址栏直接打开不具有全屏功能, 必须作为插件写入 html 代码.
    youku 的播放器要加参数.
    tudou 的播放器有内外两个版本, 参数写在 flash 内, 不能在 html 中更改.youku:<embed width="500" height="350" bgcolor="#000000" allowfullscreen="true"
     src="http://static.youku.com/v1.0.0233/v/swf/qplayer.swf?VideoIDS=影片定位地址&winType=interior&isShowRelatedVideo=false&showAd=0">tudou:<embed width="500" height="350" bgcolor="#000000" allowfullscreen="true"
     src="http://ui.tudou.com/bin/player.swf?iid=影片定位地址">
      

  4.   

    简单说,我现在有了一个视频地址:http://player.youku.com/player.php/sid/9131933/v.swf我把他放到我的页面,如果让他具备最大化功能?原先我的代码是不能实现这点的?对于土豆和优酷的
      

  5.   

    youku 的影片定位地址有两种: 字母(例: XMzY1Mjc3MzI=). 数字(例: 9131933).以下两段代码作用相同:<embed width="500" height="350" bgcolor="#000000" allowfullscreen="true" 
    src="http://static.youku.com/v1.0.0233/v/swf/qplayer.swf?VideoIDS=XMzY1Mjc3MzI=&winType=interior&isShowRelatedVideo=false&showAd=0"><embed width="500" height="350" bgcolor="#000000" allowfullscreen="true" 
    src="http://static.youku.com/v1.0.0233/v/swf/qplayer.swf?VideoIDS=9131933&winType=interior&isShowRelatedVideo=false&showAd=0">
      

  6.   

    tudou 的播放器又更新了.<embed width="500" height="350" bgcolor="#000000" allowfullscreen="true" 
    src="http://ui.tudou.com/bin/player_online/TudouVideoPlayer_Homer.swf?iid=影片定位地址&default_skin=http://ui.tudou.com/bin/player_online/TudouVideoPlayerSkin_Romeo.swf">影片定位地址为一串数字, 可以在预览图地址中提取.例: http://i01.img.tudou.com/data/imgs/i/020/780/715/p.jpg
    去除前导0合并 020/780/715 为 20780715.
      

  7.   

    到http://www.eyingda.com/ArticleView.aspx?ArticleId=98 有代码实现全屏而不会转到优酷网。