-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathheadless_client.js
88 lines (73 loc) · 2.32 KB
/
headless_client.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
76
77
78
79
80
81
82
83
84
85
86
87
88
"use strict";
const puppeteer = require("puppeteer");
const url =
process.env.URL === undefined ? "http://localhost:4000" : process.env.URL;
const token = process.env.TOKEN === undefined ? "example" : process.env.TOKEN;
async function stream(url, token) {
console.log("Starting new stream...");
const localStream = await navigator.mediaDevices.getUserMedia({
video: {
width: { ideal: 1280 },
height: { ideal: 720 },
frameRate: { ideal: 24 },
},
audio: true,
});
const pc = new RTCPeerConnection({
iceServers: [{ urls: "stun:stun.l.google.com:19302" }],
});
pc.onconnectionstatechange = async (_) => {
console.log("Connection state changed:", pc.connectionState);
if (pc.connectionState === "failed") {
stream(url, token);
}
};
pc.addTrack(localStream.getAudioTracks()[0], localStream);
pc.addTransceiver(localStream.getVideoTracks()[0], {
streams: [localStream],
sendEncodings: [
{ rid: "h", maxBitrate: 1500 * 1024 },
{ rid: "m", scaleResolutionDownBy: 2, maxBitrate: 600 * 1024 },
{ rid: "l", scaleResolutionDownBy: 4, maxBitrate: 300 * 1024 },
],
});
const offer = await pc.createOffer();
await pc.setLocalDescription(offer);
const response = await fetch(`${url}/api/whip`, {
method: "POST",
cache: "no-cache",
headers: {
Accept: "application/sdp",
"Content-Type": "application/sdp",
Authorization: `Bearer ${token}`,
},
body: offer.sdp,
});
if (response.status !== 201) {
throw Error("Unable to connect to the server");
}
const sdp = await response.text();
await pc.setRemoteDescription({ type: "answer", sdp: sdp });
}
async function start() {
let browser;
try {
console.log("Initialising the browser...");
browser = await puppeteer.launch({
args: [
"--no-sandbox",
"--use-fake-ui-for-media-stream",
"--use-fake-device-for-media-stream",
],
});
const page = await browser.newPage();
page.on("console", (msg) => console.log("Page log:", msg.text()));
// we need a page with secure context in order to access userMedia
await page.goto(`${url}/notfound`);
await page.evaluate(stream, url, token);
} catch (err) {
console.error("Browser error occured:", err);
if (browser) await browser.close();
}
}
start();