尝试从虚拟文件夹播放mp4视频文件时,JW Player出错

时间:2014-01-14 08:20:23

标签: html5-video mp4 jwplayer

我现在有一个在localhost上运行的网络应用。

我在虚拟目录中有一个flv文件和一个mp4文件(这些文件使用FFMPEG处理) 我将JW Player设置为默认在HTML5中运行。

当我将src指向flv文件时,它可以正常播放。 但是,如果我将视频的src更改为同一目录中的mp4文件,则会在FF和Chrome上出现此错误

The video could not be loaded, either because the server or network failed or because the format is not supported: http://localhost/files/john/test video.mp4undefined

我做错了什么?请帮忙。

这是我的代码: <video id="container" src="http://localhost/files/john/test video.mp4" width="640" height="360" type="video/mp4"></video>&lt; - 给出错误

<video id="container" src="http://localhost/files/john/test video.flv" width="640" height="360"></video>&lt; - 作品

jwplayer('container').setup({
'autostart': 'false',
'flashplayer': '../../../../Content/jw/player.swf',
'id': 'JWP',
'width': '640',
'height': '360',
'controlbar.position': 'bottom',
'controlbar.idlehide': 'false',
'screencolor': '#000000',
'events':
{
//all callbacks here
},
'stretching': "exactfit",
'modes': [
{ type: "html5" },
{ type: "flash", src: "../../../../Content/jw/player.swf" },
{ type: "download" }
],
'skin': "../../../../Content/jw/skins/Papon/Papon.zip",
'logo.file': "../../../../Content/jw/logo.png",
'logo.hide': false,
'logo.link': encodeURI('site url'),
'logo.margin': 3,
'logo.position': "bottom-left",
'logo.out': 0.33
});

1 个答案:

答案 0 :(得分:1)

下:

'height': '360',

添加:

'provider': 'video',