html5的video标签只支持mp四、webm、ogg三种格式,不支持flv格式,在使用video.js时,若是使用html5是会报错不支持。html
修改了一下代码html5
js部分web
videojs.options.flash.swf = "{{ config.app.static_url }}assets/flash/video-js.swf";
html部分app
<video class="video-js vjs-default-skin" controls preload="none" width="500" height="280" data-setup="{}" src="{{ config.app.upload_url }}{{scene.video_file}}"> <source src="{{ config.app.upload_url }}{{scene.video_file}}" type="video/flv"> </video>
这样flv格式的视频就是调用flash加载ide