查看完整版本: [-- 官方 APlayer 测试工具 APlayer3Test 可执行文件(版本 1.0.0.56,2021-3-23 更新) --]

APlayer 开发者论坛 -> APlayer 讨论区 -> 官方 APlayer 测试工具 APlayer3Test 可执行文件(版本 1.0.0.56,2021-3-23 更新) [打印本页] 登录 -> 注册 -> 回复主题 -> 发表主题

<<  1   2   3   4   5   6  >>  Pages: ( 6 total )

jevenmieer 2015-12-03 11:41

官方 APlayer 测试工具 APlayer3Test 可执行文件(版本 1.0.0.56,2021-3-23 更新)

什么都要钱 管理员 你太狠了

alex_rob 2015-12-04 10:10
测试工具 还要花钱购买

sobcctv 2015-12-13 14:18
太贵了

climb 2015-12-16 20:36
不错

manghost 2015-12-19 10:48
<!DOCTYPE html>

<!--[if lt IE 9]>
<html class="degrade">
<![endif]-->
<html>
<head>
<meta charset="gb2312" />
<title>迅雷APlayer媒体播放引擎</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="divDemo" class="sec present">
<div class="header">
     <h1>此页需要<a href='http://aplayer.open.xunlei.com/'>迅雷APlayer媒体播放引擎</a>或<a href='http://www.kankan.com/app/xmp.html'>迅雷看看</a>支持,不能显示播放器请先下载安装!</h1>
        <h2>演示<i></i></h2><span>在线播放 FLV 封装的 H.265 视频 (分辨率1280x544、码率1120Kbps)</span>
</div>
<object
   id="Player"
   width="990"
   height="550"
   classid="CLSID:23A860E9-0C41-4E01-9206-D3FC0E413645"
   style="left:20; top:90;" VIEWASTEXT>
      <embed
    id="Player_FF"
    type="application/x-thunder-aplayer"
    width="990"
    height="550"
    clsid="{23A860E9-0C41-4E01-9206-D3FC0E413645}"
    Event_OnStateChanged="OnStateChanged"
    Event_OnFlashCall="OnFlashCall"
    Event_OnFlashReadyStateChange="OnFlashReadyStateChange"
    Event_OnDocumentComplete="OnDocumentComplete"
    Event_OnPictureLBtnDown="OnPictureLBtnDown"
    Event_OnOpenSucceeded="OnOpenSucceeded">
         </embed>
</object>
    <script type="text/javascript">
   var EventUtil =
   {
    addHandler: function(element, type, handler)
    {
     if (element.addEventListener) {
      element.addEventListener(type, handler, false);
     }
     else {
      element.attachEvent("on" + type, handler);
     }
    },

    removeHandler: function(element, type, handler)
    {
     if (element.removeEventListener) {
      element.removeEventListener(type, handler, false);
     }
     else {
      element.detachEvent("on" + type, handler);
     }
    }
   };
    </script>
    <script type="text/javascript">  
   var player = null;
   var Aplayer = null;

   var ID1 = null;
   var flash1 = null;

   var ID2 = null;
   var flash2 = null;

   var bShow = true;
   var bEnable = false;

   var position = null;
   var duration = null;

   var unloadhandler = function()
   {
    if (ID1 != null) {
     player.RemoveElement(ID1);
     ID1 = null;
     flash1 = null;
    }

    if (ID2 != null) {
     player.RemoveElement(ID2);
     ID2 = null;
     flash2 = null;
    }

   };

   var loadhandler = function()
   {
    player = GetElementById("Player");
    Aplayer = player.GetAPlayerObject();
    if(player == null || Aplayer == null)
     return;

    player.ShowDefaultControlBar(false, 40);
                                ID1 = Aplayer.Open(http://f1.flv.kankan.xunlei.com/data/cdn_transfer/demo.hflv);
    player.SetElementPosition(ID1, 7, 0, 0, 100, 100);
    player.SetElementVisible(ID1, true);
                                player.ShowDefaultControlBar(bShow, 40);
                                player.SetElementVisible(ID1, true);
    flash1 = player.GetElementObject(ID1);
   };


   function UpdateTime()
   {
    var text = null;
    if (Aplayer != null)
       {
     if (Aplayer.GetState() == 5)
     {
      position = Aplayer.GetPosition();
      position = MillisecondToText(position);
      var p = Aplayer.GetBufferProgress();

      if (p == -1)
       text = position + " / " + duration;
      else
       text = position + " / " + duration + " (正在缓冲..." + p + "%)";

      var para = "<invoke name=\"callflash\" returntype=\"xml\"><arguments><string>";
      para = para + text;
      para = para + "</string></arguments></invoke>";
      player.CallFlashFunction(ID1, para);
     }
     else
     {
        var nResult = Aplayer.GetConfig(7);
        if(nResult != 0 && nResult != 1)
       text= "播放失败, 错误码 = " + nResult;
        else
       text = "";

     }  
    }
    setTimeout(function () { UpdateTime(); }, 1000);
   }
   UpdateTime();

   function OnOpenSucceeded() {
    var nDuration = Aplayer.GetDuration();
    duration = MillisecondToText(nDuration);
   }

   function OnDocumentComplete(nID, URL)
   {
    //alert("ID="+nID+", 网页 "+URL+" 加载完成!");
   }

   /*function thisMovie(movieName)
   {
    if (navigator.appName.indexOf("Microsoft") != -1) {
     return window[movieName];
    }
    else {
     return document[movieName];
    }
   }*/

   function GetElementById(Id)
   {
    if (navigator.appName.indexOf("Microsoft") != -1) {
     return document.getElementById(Id);
    }
    else {
     return document.getElementById(Id+"_FF");  
    }
   }


   EventUtil.addHandler(window, "load", loadhandler);
   EventUtil.addHandler(window, "unload", unloadhandler);

    </script>
  <h1>注:IE10,IE11的请使用兼容模式运行,否则不能正常播放!</h1>
</body>
</html>

xtxiao 2015-12-25 01:51
现在没钱,等会儿有钱了再来买

meng123qq 2015-12-26 20:09
啥子东西这贵

dww 2016-01-01 02:20
这个好啊。正好学习

全镇 2016-01-04 09:51
没钱怎么办

全镇 2016-01-07 21:09
怎么才能全屏啊

aguo123 2016-01-08 23:18
      

121163657 2016-01-08 23:30
没有源码么  

sdp000 2016-01-10 13:36
想要一个看看

fzxlcom 2016-01-12 01:49
下来看看吧!!!!

shuen 2016-01-12 10:06
        

canqing86 2016-01-15 10:24
降价吧,太贵了

bbsv 2016-01-15 20:42
好东西啊,支持了

tryflybird 2016-01-17 21:26
一个非常好用的测试工具

czweb 2016-01-17 22:15
怎么才能有播放币

czweb 2016-01-17 22:24

回复就可以了吗

czweb 2016-01-17 22:34
牛逼

全镇 2016-01-18 17:52
新版支持下啊

qaaoo 2016-01-18 18:03
       没钱了

jiemei 2016-01-19 13:39
更新了  回复看看  谢谢

zhong 2016-01-19 22:41
rehjtretjdjfdsjhgkhnc

我不懂 2016-01-22 14:00
  

qq875180 2016-01-24 20:49
购买下来看看!!!

9sheng 2016-01-26 22:25
好贵啊,没钱怎么办

edu007 2016-01-28 03:16
什么都要钱 管理员 你太狠了

诗与远方 2016-01-29 15:40
可以播放全景视频吗?

aplayer 2016-01-29 16:45
诗与远方:可以播放全景视频吗? (2016-01-29 15:40) 

可以,见帖子
PC 上全景视频播放:
http://aplayer.open.xunlei.com/bbs/read.php?tid=24293&fpage=5
Oculus 上全景视频播放:
http://aplayer.open.xunlei.com/bbs/read.php?tid=24327&fpage=4

宇天 2016-01-30 14:27
便宜点吧大哥争点币不容易呀

adn丶紫气 2016-01-30 15:49
一个非常好用的测试工具,才 10 播放币,很便宜了。

黑幕 2016-01-31 03:28
怎么这莫贵

qq667 2016-02-01 00:52
什么都要钱 管理员

charlotte 2016-02-01 09:36
买不起呀 买不起

诗与远方 2016-02-01 10:05
        LONG nResult = 0;
        nResult = g_MyPlayer.m_pAPlayer->SetConfig(2401, _bstr_t("1"));

        g_MyPlayer.m_pAPlayer->SetConfig(2402, _bstr_t("4"));

        g_MyPlayer.m_pAPlayer->SetConfig(2403, _bstr_t("1.28;1.02;350.6"));

调用了不成功啊,还是普通播放

诗与远方 2016-02-01 10:07
楼主能给咱们全景视频播放的C++源代码吗?跪求

诗与远方 2016-02-01 10:11
楼主,测试程序的源代码能给大家吗?

vantrim 2016-02-04 02:19
攒点播放币,新人伤不起

rongxiaorong 2016-02-08 06:02
买不起呀 买不起

funnyrus 2016-02-09 10:28
等我攒够了播放币,连源码一起下载学习

haiuyan 2016-02-10 16:09
降价吧! 太贵了……

xushen 2016-02-17 13:12
支持来了,

project_ms 2016-02-17 22:55
降价吧,太贵了

vantrim 2016-02-21 16:46
支持支持!

qsndwr 2016-03-03 11:17
非常感激有这样的一个论坛,谢谢!

sslsmh 2016-03-14 01:45
什么都要钱 管理员 你太狠了

q522849100 2016-03-16 23:24
下载下来试试。

yhaohuo 2016-03-27 19:49
谢谢分享 ~


查看完整版本: [-- 官方 APlayer 测试工具 APlayer3Test 可执行文件(版本 1.0.0.56,2021-3-23 更新) --] [-- top --]


Powered by phpwind v8.7 Code ©2003-2011 phpwind
Time 0.015828 second(s),query:0 Gzip enabled