为Android网页浏览器嵌入Flash流

时间:2012-03-07 19:35:32

标签: android flash browser mobile embed

在这个问题上,我一直在摸不着头脑。我试图在一个HTML页面中嵌入来自own3d.tv的flash流,该页面可以在android web浏览器中查看。无论我做什么,flash页面都会在页面加载几秒后变白。我试过复制他们的确切代码以及使用swfobject,但没有运气。更令人困惑的部分是我能够在他们的主页上查看相同的流就好了。 (own3d.tv)。以下是详细信息:

我正在使用的内容:

  • Google Galaxy Nexus上的Android 4.0.1
  • swfobject 2.0
  • Flash 11
  • 始终使用在线的流ID

守则:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
    <head>
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
    <style type="text/css">
        * { margin: 0; padding: 0; }
        body { text-align: center; }
        html, body { height: 100%, width: 100%; }
    </style>
    <script>
        $(document).ready(function(){
            var flashvars = {};
            var params = {
                allowscriptaccess : "always",
                allowfullscreen : "true",
                wmode : "transparent"
            };
            var attributes = {};
            swfobject.embedSWF("http://www.own3d.tv/livestream/34046;autoplay=true", "player", "400", "300", "11.0.0","expressInstall.swf", flashvars, params, attributes);             
        });
    </script>
    </head>
    <body>
        <div id="player" style="visibility: hidden;"></div>
    </body>
</html>

0 个答案:

没有答案