-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathweb-rtc.js
75 lines (67 loc) · 1.94 KB
/
web-rtc.js
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
import { html, css, LitElement } from 'lit';
export class web_rtc extends LitElement {
static styles = css `
:host {
color: red;
}
`;
static get properties() {
return {
name: { type: String },
width: { type: String },
value: { type: Number }
}
}
constructor() {
super();
}
show() {
if(web_rtc.init) return;
web_rtc.init = true;
var self = this;
console.log("show:")
const peers = {}
const ROOM_ID = 'nana';
const socket = io.connect('https://webrtc.webduino.io/')
// (1)
const myPeer = new Peer(undefined, {
host: 'peerjs.webduino.io',
path: '/myapp',
proxied: true
})
// (2)
myPeer.on('open', id => {
socket.emit('join-room', ROOM_ID, id)
})
// (3) 取得已加入的用戶
myPeer.on('call', call => {
console.log("on call");
//將本身的 stream 送給線上用戶
const video = document.createElement('video')
call.answer(video.stream);
//新進來的用戶送過來的串流
call.on('stream', userVideoStream => {
const xx = document.createElement('video')
xx.srcObject = userVideoStream
xx.addEventListener('loadedmetadata', () => {
xx.play();
})
function onFrame() {
window.requestAnimationFrame(onFrame);
var ctx = self.shadowRoot.firstElementChild.getContext('2d');
ctx.drawImage(xx, 0, 0, 640, 480);
}
onFrame();
})
})
socket.on('user-disconnected', userId => {
location.reload();
})
}
updated() {
}
render() {
return html `<canvas width='640px' height='320px'></canvas>`;
}
}
customElements.define('web-rtc', web_rtc);