OGeek|极客世界-中国程序员成长平台

标题: ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 13:47
标题: ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花

我正在使用 popcornjs 加载与来自 youtube 的视频的交互。 当我使用文档中的代码时:

<html>
  <head>
<script src="http://popcornjs.org/code/dist/popcorn-complete.min.js"></script>

<script>
  // ensure the web page (DOM) has loaded
  document.addEventListener("DOMContentLoaded", function () {

       // Create a popcorn instance by calling the Youtube player plugin
     var example = Popcorn.youtube(
       '#video',
       'http://www.youtube.com/watch?v=CxvgCLgwdNk' );

     // add a footnote at 2 seconds, and remove it at 6 seconds
     example.footnote({
       start: 2,
       end: 6,
       text: "op!",
       target: "footnotediv"
     });

     // play the video right away
     //example.play(); => commented because you can't autoplay on ios

  }, false);
</script>
  </head>
  <body>
    <div id="video" style="width: 360px; height: 300px;" ></div>
    <div id="footnotediv"></div>
  </body>
</html>    

它在任何浏览器上看起来都很完美,但在 iPad 上却没有任何显示。 当我用爆米花加载视频但不使用 Youtube 时,它​​似乎工作正常。

我能做什么?



Best Answer-推荐答案


很遗憾,ipad 不支持 Flash。我们确实在处理 Popcorn 的票证,以切换到他们的 HTML5 API,您可以在此处查看:

https://webmademovies.lighthouseapp.com/projects/63272/tickets/329-support-youtube-html5-api-playback-engine

希望对您有所帮助, 布雷特

关于ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10588070/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://jike.in/) Powered by Discuz! X3.4