Jwplayer无法在html5模式下播放视频,但在Flash模式下工作正常



我正在jwplayer中加载一个xml文件来播放视频,具体取决于单击的链接。下面是我的jwplayer设置代码和xml:

Jwplayer:

<script type="text/javascript">
 jwplayer("player-container").setup({
 autostart: true,
 'modes': [
   {type: 'html5'}, 
   {type: 'flash', src: '/assets/components/mediaplayer-5.8/5.9/player.swf',config:{
        skin: "/assets/components/mediaplayer-5.8/modieus.swf"        
     }},
    {type: 'download'}
    ],    
 repeat: 'list',
 width: 480
    });
  jwplayer().load('/media/narration.xml')
</script>

示例 XML:

<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
  <channel>
    <title>Sample File</title>
 <item>
      <title>peking</title>
      <link></link>
      <description></description>
      <pubDate>Sat, 07 Sep 2002 09:42:31 GMT</pubDate>
      <media:content url="/videos/Peking Edit For Web-7.mp4" />
      <media:thumbnail url="/images/playerimg.jpg" />
</item>
  </channel>
</rss>

但是,没有视频正在播放。但是如果我{type: 'html5'}放在flash以下,视频会正确显示。知道我可能做错了什么吗?

JW PLayer 尝试根据 mode 参数中指定的类型按照指定的顺序播放视频。因此,如果HTML5在Flash之前,它将首先尝试在HTML5中播放。HTML5 使用标记,因此请尝试将语句包装在视频标记中

事实证明,仅仅因为一个文件是mp4,它可能并不总是在jwplayer中播放。我必须用H264对其进行编码才能使它们正常播放。为此,我使用了一个名为"手刹"的软件。

相关内容

  • 没有找到相关文章

最新更新