1234567891011121314151617181920212223242526272829303132333435363738 |
- function play(title,url, state)
- {
- if(state == 1)
- {
- $("#playerShow").append('<div id="download" style="display:;"><a href="http://www.xinnongbaohe.com/assets/pc/lib/video/WebComponents.exe" target="_blank" title="下载并安装播放控件后,将可以对摄像头进行控制">点此下载播放控件</a></div>');
- }
-
- SewisePlayer.setup({
- server: "vod",
- type: "m3u8",
- autostart: "true",
- buffer : 5,
- videourl: url,
- skin: "vodWhite",
- title: title ? title : '监控',
- timedisplay : 'disable',
- claritybutton : 'disable',
- poster : 'http://www.xinnongbaohe.com/assets/play.png',
- lang: 'zh_CN'
- }, "player");
- setTimeout(function()
- {
- $("#playerShow").show();
- }, 1);
-
- }
- function show(html)
- {
- $("#playerShow").css('margin-bottom', '350px').html(html).show();
- }
- if(location.href.indexOf('test') != -1)
- {
- $("#playerShow").show();
- }
|