Drupal 7 JW Player 6中的多个文件不工作

Drupal 7 JW Player 6中的多个文件不工作,drupal-7,ffmpeg,jwplayer,Drupal 7,Ffmpeg,Jwplayer,使用版本6 JW播放器。我正在使用FFMPEG将我的视频转换为MP4、FLV和WebM 当视频打算播放时,它不会播放,我有以下错误: Error playing media: MediaError code: 4 __proto__: MediaError MEDIA_ERR_ABORTED: 1 MEDIA_ERR_DECODE: 3 MEDIA_ERR_ENCRYPTED: 5 MEDIA_ERR_NETWORK: 2 MEDIA_ERR_SRC_NOT_SUPPORTED: 4 cons

使用版本6 JW播放器。我正在使用FFMPEG将我的视频转换为MP4、FLV和WebM

当视频打算播放时,它不会播放,我有以下错误:

Error playing media: 
MediaError
code: 4
__proto__: MediaError
MEDIA_ERR_ABORTED: 1
MEDIA_ERR_DECODE: 3
MEDIA_ERR_ENCRYPTED: 5
MEDIA_ERR_NETWORK: 2
MEDIA_ERR_SRC_NOT_SUPPORTED: 4
constructor: function MediaError() { [native code] }
__proto__: Object
 jwplayer.js?muokxc:4
CAPTIONS([object Object]) jwplayer.js?muokxc:4
CAPTIONS([object Object]) 
在Firefox中,我有一个错误:“文件无法解码”。 这种情况只发生在我的服务器上。但在本地主机上,这种情况不会发生。视频可以正常播放

发生了什么事

我初始化JW播放器的JS代码是:

jwplayer('jwplayerjw-player').setup({
"aspectratio":"16:9",
"playlist":[{
"image":"http://mydomain.com/system/files/videos/thumbnails/48/thumbnail-48_0002.png",
"sources":[{
"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_flv_1381794678.flv"},
{"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_mp4_1381794691.mp4"},
{"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_webm_1381794705.webm"}]}],
"width":"100%",
"height":360,
"stretching":"fill",
"skin":"sites/all/libraries/jwplayer/skin.xml"
});

为什么文件属性有更多的花括号

应该是这样的

"sources":[{
"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_flv_1381794678.flv",
"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_mp4_1381794691.mp4",
"file":"http://mydomain.com/system/files/videos/converted/48/loop_2_webm_1381794705.webm"}]}],

你能分享一个链接吗?