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
|
/* eslint-env browser */
// Create peer conn
const pc = new RTCPeerConnection({
iceServers: [{
urls: 'stun:stun.l.google.com:19302'
}]
})
pc.oniceconnectionstatechange = (e) => {
console.log('connection state change', pc.iceConnectionState)
}
pc.onicecandidate = (event) => {
if (event.candidate === null) {
document.getElementById('localSessionDescription').value = btoa(
JSON.stringify(pc.localDescription)
)
}
}
pc.onnegotiationneeded = (e) =>
pc
.createOffer()
.then((d) => pc.setLocalDescription(d))
.catch(console.error)
pc.ontrack = (event) => {
console.log('Got track event', event)
const video = document.createElement('video')
video.srcObject = event.streams[0]
video.autoplay = true
video.width = '500'
const label = document.createElement('div')
label.textContent = event.streams[0].id
document.getElementById('serverVideos').appendChild(label)
document.getElementById('serverVideos').appendChild(video)
}
navigator.mediaDevices
.getUserMedia({
video: {
width: {
ideal: 4096
},
height: {
ideal: 2160
},
frameRate: {
ideal: 60,
min: 10
}
},
audio: false
})
.then((stream) => {
document.getElementById('browserVideo').srcObject = stream
pc.addTransceiver(stream.getVideoTracks()[0], {
direction: 'sendonly',
streams: [stream],
sendEncodings: [
// for firefox order matters... first high resolution, then scaled resolutions...
{
rid: 'f'
},
{
rid: 'h',
scaleResolutionDownBy: 2.0
},
{
rid: 'q',
scaleResolutionDownBy: 4.0
}
]
})
pc.addTransceiver('video')
pc.addTransceiver('video')
pc.addTransceiver('video')
})
window.startSession = () => {
const sd = document.getElementById('remoteSessionDescription').value
if (sd === '') {
return alert('Session Description must not be empty')
}
try {
console.log('answer', JSON.parse(atob(sd)))
pc.setRemoteDescription(JSON.parse(atob(sd)))
} catch (e) {
alert(e)
}
}
window.copySDP = () => {
const browserSDP = document.getElementById('localSessionDescription')
browserSDP.focus()
browserSDP.select()
try {
const successful = document.execCommand('copy')
const msg = successful ? 'successful' : 'unsuccessful'
console.log('Copying SDP was ' + msg)
} catch (err) {
console.log('Unable to copy SDP ' + err)
}
}
|