菜鸟教程小白 发表于 2022-12-13 13:47:49

ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花


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

<pre><code>&lt;html&gt;
&lt;head&gt;
&lt;script src=&#34;http://popcornjs.org/code/dist/popcorn-complete.min.js&#34;&gt;&lt;/script&gt;

&lt;script&gt;
// ensure the web page (DOM) has loaded
document.addEventListener(&#34;DOMContentLoaded&#34;, function () {

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

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

   // play the video right away
   //example.play(); =&gt; commented because you can&#39;t autoplay on ios

}, false);
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div id=&#34;video&#34; style=&#34;width: 360px; height: 300px;&#34; &gt;&lt;/div&gt;
    &lt;div id=&#34;footnotediv&#34;&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;   
</code></pre>

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

<p>我能做什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>很遗憾,ipad 不支持 Flash。我们确实在处理 Popcorn 的票证,以切换到他们的 HTML5 API,您可以在此处查看:</p>

<p> <a href="https://webmademovies.lighthouseapp.com/projects/63272/tickets/329-support-youtube-html5-api-playback-engine" rel="noreferrer noopener nofollow">https://webmademovies.lighthouseapp.com/projects/63272/tickets/329-support-youtube-html5-api-playback-engine</a> </p>

<p>希望对您有所帮助,
布雷特</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10588070/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10588070/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Popcorn JS - 在 iPad 或 iOS 设备上通过 Youtube 使用爆米花