2

我目前有 JW Player 设置,因此它的第一个选项是 HTML5,后备是 FLV,然后后备是下载。

只有 HTML5 路由似乎可以流式传输视频,但我也需要它来流式传输 flash 路由中的视频。

任何想法我需要使用哪些附加参数?

当前设置如下:

jwplayer('the_video_container').setup({
            'id': 'playerID',
            'width': '654',
            'height': '410',
            'file': '/video/keyword_vid_1.mp4',
            'autostart': 'true',
            'controlbar': 'none',
            'screencolor': 'FFFFFF',
            'repeat': 'always',
            'modes': [
                {type: 'html5'},
                {type: 'flash', src: '/js/jwplayer/player.swf'},
                {type: 'download'}
            ]
        });
4

1 回答 1

1

尝试如下设置您的 JW Player:

jwplayer('the_video_container').setup({
        'id': 'playerID',
        'flashplayer':'/js/jwplayer/player.swf',
        'width': '654',
        'height': '410',
        'file': '/video/keyword_vid_1.mp4',
        'autostart': 'true',
        'controlbar': 'none',
        'screencolor': 'FFFFFF',
        'repeat': 'always',
        'modes': [
            {type: 'html5'},
            {type: 'flash'},
            {type: 'download'}
        ]
    });

请记住,对于那些在 html5 播放中不支持 mp4 的浏览器,您可能希望src在块中包含其他属性。html5

于 2012-05-04T15:26:41.040 回答