-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.php
More file actions
205 lines (165 loc) · 6.58 KB
/
test.php
File metadata and controls
205 lines (165 loc) · 6.58 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="bj.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Electrolize&display=swap" rel="stylesheet">
<title>webcam</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/hls.js@latest"></script>
<!-- 최신버전 Alpha를 이용하고 싶다면 아래 스크립트를 사용 -->
<!--<script src="https://cdn.jsdelivr.net/npm/hls.js@alpha"></script>-->
</head>
<?php
$userId = $_GET["userId"];
$broadName = $_GET["broadName"];
$seq = $_GET["seq"];
session_start();
$_SESSION['seq'] = $seq;
?>
<script>
var myVideoStream = document.getElementById('myVideo') // make it a global variable
var camCode = 0;
var audioCode = 0;
function getVideo(){
navigator.getMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia;
navigator.getMedia({video: true, audio: true},
function(stream) {
myVideoStream.srcObject = stream
myVideoStream.play();
camCode = 1;
audioCode = 1;
},
function(error) {
alert('webcam not working');
});
}
getVideo(); //방송 바로 시작
function breakVideo(){ //캠 끄기
navigator.getMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia;
if(audioCode==false&&camCode==false){
alert('오디오와 비디오 중 하나는 켜져 있어야 합니다');
return false;
}
navigator.getMedia({video: false, audio:true},
function(stream) {
myVideoStream.srcObject = stream
myVideoStream.remove;
},
function(error) {
alert('webcam not working');
});
}
function breakAudio(){ //오디오 끄기
navigator.getMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia;
if(camCode==false&&camCode==false){
alert('오디오와 비디오 중 하나는 켜져 있어야 합니다');
return false;
}
navigator.getMedia({video: true, audio: false},
function(stream) {
myVideoStream.srcObject = stream
myVideoStream.play();
},
function(error) {
alert('webcam not working');
});
}
//비디오 오디오 껐다켰다 하기
function onoffVideo(){
if(camCode==0){
getVideo();
document.getElementById("cam").value = "캠 끄기";
camCode=1;
}
else{
breakVideo();
document.getElementById("cam").value = "캠 켜기";
camCode=0;
}
}
function onoffAudio(){
breakAudio();
if(audioCode==0){
getVideo();
document.getElementById("audio").value = "오디오 정지";
audioCode=1;
}
else{
breakAudio();
document.getElementById("audio").value = "오디오 켜기";
audioCode=0;
}
}
function logFind(){
var loginId = window.sessionStorage.getItem("userId");
console.log(loginId);
if(loginId===null){
console.log("dsfdsaf");
location.href="login.php";
}
else{
alert(loginId);
}
}
function offbroad(){
<?php
$seq = $_GET["seq"];
$userId =$_GET['userId'];
$id = $_SESSION['userId'];
?>
var seq = <?=$seq?>;
var userId = '<?=$userId?>';
var id = '<?=$id?>';
if(userId!=id){
alert("권한이 없습니다");
return false;
}
else{
location.href = "endBroad.php?seq="+seq+"&userId="+userId;
}
}
/*
const videoTag = document.getElementById("myVideo");
const myMediaSource = new MediaSource();
const url = URL.createObjectURL(myMediaSource);
videoTag.src = url;
console.log(url);
alert(url);*/
</script>
<body>
<div class="test_all">
<!-- <nav class="prontbar">
<a href="index.php">WebServerProject</a>
</nav>-->
<div class="all_webcam">
<div class="webcam">
<div class="bjtest">
<video id="myVideo" autoplay controls="false">
브라우저가 video 태그를 지원하지 않습니다.
</video>
</div>
<div class="chat_iframe">
<iframe src="chat.php?seq=<?=$seq?>"></iframe>
</div>
</div>
<div class="info">
<h1>
<?=$broadName?>
</h1>
<h4>
<?=$userId?>
</h4>
<input type=button id="cam" value="캠 정지" onclick="{onoffVideo()}">
<input type=button id="audio" value="오디오 정지" onclick="{onoffAudio()}">
<input type=button id="stop" value="방송 종료" onclick="{offbroad()}">
</div>
</div>
</div>
<script src="Webcam.js"></script>
</body>
</html>