JWPlayer - 为什么单个视频单独播放,但放在播放列表中却不播放?

JWPlayer - Why does a single video plays on its own but not when put in playlist?

我遇到了一些奇怪的行为,我可以播放视频文件,但将同一视频文件放入播放列表时会生成错误。

JWPlayer 6.9.4867(专业版)

在代码中调用

  <!-- jwplayer code -->
  <script type="text/javascript" src="/content/js/jwplayer.js"></script>
  <script type="text/javascript"> jwplayer.key = "---key here---";</script>

以下代码工作正常。

 <script type="text/javascript">
 jwplayer("myElement").setup({
 file: "http://www.artistshare.com/media_proxy.aspx?id=23745&ex=.mp4&mediaTypeID=4",
 type: "mp4",
 width: 980,
 height: 350,
 image: "http://www.artistshare.com/images/projects/531/16531.jpg",

});

转换为播放列表时不会。媒体将不会加载。 "Error loading player: No playable sources found"

 <script type="text/javascript">
 jwplayer("myElement").setup({
 playlist: [{
 image: "http://www.artistshare.com/images/projects/531/16531.jpg",
 file: "http://www.artistshare.com/media_proxy.aspx?id=23745&ex=.mp4&mediaTypeID=4", title: "Testing"
 }],

 height: 350,
 width: 980,
 listbar: {
 position: 'right',
 size: 260
 },

 });

 </script>

有没有其他人遇到过这种情况?似乎是一个错误,但也许我遗漏了一些东西。任何见解都会有所帮助。

答案是播放列表数组中需要指定type:"mp4"。愚蠢的错误,但希望这会对某人有所帮助。