视频播放测试:
- flowplayer-flash版播放器测试
- VideoJs&videojs-contrib-hls测试
- npm install
- npm run start
- 访问 http://localhost:3001/ //flowplayer-flash播放器参数测试
- 访问 http://localhost:3001/api //flowplayer-flash播放器api测试
- 访问 http://localhost:3001/videojs-test //流媒体测试 VideoJs&videojs-contrib-hls
- Flowplayer@官网
- Flowplayer@github
- Flowplayer视频播放插件@jquery插件库
- Flowplayer-flash@官网
- Flowplayer-flash@github
- Flowplayer-flash@Player-api
m3u8
格式的视频是将文件分成一小段一小段的ts
文件,播放完一个在播放下一个,由于每次请求的 ts 文件都很小,所以基本可以做到无延时播放。目前WEB上主流的直播方案主要是HLS
和RTMP
,移动端主要是 HLS,PC端主要是 RTMP
HLS是苹果推出的,移动端不管是IOS还是Android都天然支持HLS协议,直接在h5页面直接配置即可使用;PC端只有safari浏览器支持,其他浏览器均不支持。