forked from jackzhang1204/sewise-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
live_api.html
89 lines (88 loc) · 3.11 KB
/
live_api.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
<title>Sewise Player</title>
</head>
<body>
<div style="width: 640px; height: 360px; ">
<script type="text/javascript" src="http://219.232.161.204/libs/swfplayer/player/sewise.player.min.js?server=live&autostart=true&pid=vk5nx2cj
&shifttime=&buffer=5&lang=en_US&logo=http://onvod.sewise.com/libs/swfplayer/skin/images/logo.png&skin=liveWhite"></script>
</div>
<script>
//直播接口调用方法
function startPlay(){
SewisePlayer.doPlay();
}
function playPause(){
SewisePlayer.doPause();
}
function seekTo(){
SewisePlayer.doSeek("20140224160520");
}
function playStop(){
SewisePlayer.doStop();
}
function livePlay(){
SewisePlayer.doLive();
}
function changeVolume(){
SewisePlayer.setVolume(0.3);
}
function getLiveTime(){
alert(SewisePlayer.liveTime());
}
function getPlayTime() {
alert(SewisePlayer.playTime());
}
function switchChannel(){
SewisePlayer.playChannel("br9anah3", "", true);
}
function switchStream(){
SewisePlayer.toPlay("rtmp://192.168.1.219/livestream/7gw3yt3h", "title", "", true);
}
//播放器回调方法
function playerReady(name){
console.log("Sewise Player On Ready");
//SewisePlayer.toPlay("http://www.w3school.com.cn/i/movie.mp4", "title", 0, false);
}
function onStart(name){
console.log("onStart");
}
function onStop(name){
console.log("onStop");
}
function onMetadata(meta, name){
console.log("onMetadata");
}
function onClarity(clarity, name){
console.log("onClarity");
}
function onPause(name){
console.log("onPause");
}
function onSeek(time, name){
console.log("onSeek: " + time);
}
function onPlayTime(time, name){
console.log("onPlayTime: " + time);
}
</script>
<div style="padding-top: 20px;">
<div style="padding-right: 15px;float: left;">[直播接口]</div>
<div style="padding-right: 15px;float: left;"><a href="javascript:startPlay();">播放</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:playPause();">暂停</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:seekTo();">跳转</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:playStop();">停止</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:livePlay();">直播</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:changeVolume();">更改音量</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:getLiveTime();">直播时间</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:getPlayTime();">播放时间</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:switchChannel();">切换频道</a></div>
<div style="padding-right: 15px;float: left;"><a href="javascript:switchStream();">切换流</a></div>
<br clear="all"/>
</div>
</body>
</html>