-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscript.js
492 lines (425 loc) · 14.9 KB
/
script.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
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
////////////////
// PARAMETERS //
////////////////
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const obsServerAddress = urlParams.get("address") || "127.0.0.1";
const obsServerPort = urlParams.get("port") || "4455";
const obsServerPassword = urlParams.get("password") || "";
const obsMicInput = urlParams.get("audio") || "";
const background = urlParams.get("background") || "";
if (obsMicInput != "")
document.getElementById("theMotherOfAllVolumeContainers").style.visibility = "visible";
if (background != "")
{
document.body.style.backgroundImage = `url("frames/${background}.png")`
}
let ws = new WebSocket("ws://" + obsServerAddress + ":" + obsServerPort + "/");
let previousOutputTimecode = 0;
let previousOutputBytes = 0;
let activeFps;
function connectws() {
if ("WebSocket" in window) {
ws = new WebSocket("ws://" + obsServerAddress + ":" + obsServerPort + "/");
// Reconnect
ws.onclose = function () {
SetConnectionStatus(false);
setTimeout(connectws, 5000);
};
ws.onopen = async function () {
}
ws.onmessage = async function (event) {
let data = JSON.parse(event.data);
switch (data.op) {
case 0: // Hello OpCode
case 3: // Reidentify OpCode
let salt = data.d.authentication != null ? data.d.authentication.salt : "";
let challenge = data.d.authentication != null ? data.d.authentication.challenge : "";
let secret = await sha256(obsServerPassword + salt);
let base64_secret = hexToBase64(secret);
let auth_string = await sha256(base64_secret + challenge);
let base64_auth_string = hexToBase64(auth_string);
ws.send(
JSON.stringify({
op: 1,
d: {
rpcVersion: 1,
authentication: base64_auth_string,
eventSubscriptions: 1 << 16
}
}
));
break;
case 2: // Identify OpCode
console.log("Connected to OBS!");
SetConnectionStatus(true);
break;
case 5: // Event OpCode
switch (data.d.eventType) {
case ("InputVolumeMeters"):
let eventData = data.d.eventData;
eventData.inputs.forEach((input) => {
if (input.inputName == obsMicInput) {
if (input.inputLevelsMul.length == 0) {
document.getElementById("theMotherOfAllVolumeContainers").style.visibility = `hidden`;
}
else {
let leftMeter = document.getElementById("theGreenShitThatsInsideTheOtherContainerLeft");
let rightMeter = document.getElementById("theGreenShitThatsInsideTheOtherContainerRight");
var tl = new TimelineMax();
tl
.to(leftMeter, 0.1, { height: + 100 * input.inputLevelsMul[0][1] + "%", ease: Linear.easeNone });
tl = new TimelineMax();
tl
.to(rightMeter, 0.1, { height: + 100 * input.inputLevelsMul[1][1] + "%", ease: Linear.easeNone });
document.getElementById("theMotherOfAllVolumeContainers").style.visibility = `visible`;
}
}
});
break;
}
break;
case 7: // RequestResponse OpCode
switch (data.d.requestType) {
case "GetStats":
{
let responseData = data.d.responseData;
activeFps = `${responseData.activeFps.toFixed(1)}`;
const cpu = `${responseData.cpuUsage.toFixed(1)}%`;
const memory = `${responseData.memoryUsage.toFixed(1)}MB`;
const averageFrameRenderTime = `${responseData.averageFrameRenderTime.toFixed(1)}ms`;
const outputSkippedFrames = responseData.outputSkippedFrames;
const outputTotalFrames = responseData.outputTotalFrames;
const outputSkippedFramesPerc = outputTotalFrames > 0 ? `${(100 * outputSkippedFrames / outputTotalFrames).toFixed(1)}%` : `0%`;
const renderSkippedFrames = responseData.renderSkippedFrames;
const renderTotalFrames = responseData.renderTotalFrames;
const renderSkippedFramesPerc = `${(100 * renderSkippedFrames / renderTotalFrames).toFixed(1)}%`
document.getElementById("statsLabel").innerHTML = `CPU: ${cpu} • MEM: ${memory} • RENDER TIME: ${averageFrameRenderTime}`;
document.getElementById("advancedStatsLabel").innerHTML = `MISSED FRAMES ${outputSkippedFramesPerc} • SKIPPED FRAMES ${renderSkippedFramesPerc}`;
document.getElementById("fps").innerHTML = `${activeFps}`;
GetVideoSettings();
}
break;
case "GetVideoSettings":
{
let responseData = data.d.responseData;
const fpsNumerator = responseData.fpsNumerator;
const fpsDenominator = responseData.fpsDenominator;
const fps = fpsNumerator / fpsDenominator;
const fpsMeterValue = activeFps / fps;
let fpsMeter = document.getElementById("fpsMeter");
var tl = new TimelineMax();
tl
.to(fpsMeter, 0.1, { height: + 100 * fpsMeterValue + "%", ease: Linear.easeNone });
if (fpsMeterValue >= 1)
document.getElementById("fpsMeter").style.backgroundColor = `#37d247`;
else if (fpsMeterValue > 0.9)
document.getElementById("fpsMeter").style.backgroundColor = `#e5af24`;
else
document.getElementById("fpsMeter").style.backgroundColor = `#D12025`;
}
break;
case "GetRecordStatus":
{
let responseData = data.d.responseData;
if (responseData.outputActive === false) {
document.getElementById("recordingLabel").innerHTML = ``;
document.getElementById("recordTimecodeLabel").innerHTML = ``;
document.getElementById("recordOutputFilesize").innerHTML = ``;
document.getElementById("recordingRing").style.visibility = 'hidden';
document.getElementById("recordInfo").style.visibility = `hidden`;
}
else {
document.getElementById("recordingLabel").innerHTML = `REC 🔴`;
document.getElementById("recordTimecodeLabel").innerHTML = `${RemoveMilliseconds(responseData.outputTimecode)}`;
document.getElementById("recordOutputFilesize").innerHTML = `${ConvertToMegabytes(responseData.outputBytes)}MB`;
document.getElementById("recordingRing").style.visibility = 'visible';
document.getElementById("recordInfo").style.visibility = `visible`;
}
}
break;
case "GetStreamStatus":
{
let responseData = data.d.responseData;
if (responseData.outputActive === false) {
document.getElementById("streamingRing").style.visibility = 'hidden';
document.getElementById("streamInfo").style.visibility = `hidden`;
}
else {
let outputTimecode = TimeToMilliseconds(responseData.outputTimecode);
let outputBytes = responseData.outputBytes;
let kbps = ((outputBytes - previousOutputBytes) / (outputTimecode - previousOutputTimecode) * 8);
previousOutputTimecode = outputTimecode;
previousOutputBytes = outputBytes;
document.getElementById("streamBitrateLabel").innerHTML = `${Math.floor(kbps)} kb/s`;
document.getElementById("streamTimecodeLabel").innerHTML = `${RemoveMilliseconds(responseData.outputTimecode)}`;
GetStreamServiceSettings();
document.getElementById("streamingRing").style.visibility = 'visible';
document.getElementById("streamInfo").style.visibility = `visible`;
}
}
break;
case "GetStreamServiceSettings":
{
let responseData = data.d.responseData;
switch (responseData.streamServiceSettings.service) {
case "Twitch":
document.getElementById("streamPlatformLabel").innerHTML = "🟣 Twitch";
break;
case "YouTube":
document.getElementById("streamPlatformLabel").innerHTML = "🔴 YouTube";
break;
case undefined:
document.getElementById("streamPlatformLabel").innerHTML = "🔴 LIVE";
break;
default:
document.getElementById("streamPlatformLabel").innerHTML = `🔴 ${responseData.streamServiceSettings.service}`;
break;
}
}
break;
case "GetProfileList":
{
let responseData = data.d.responseData;
document.getElementById("profileLabel").innerHTML = `Profile: ${responseData.currentProfileName}`;
}
break;
case "GetInputMute":
{
let responseData = data.d.responseData;
console.log(responseData);
if (responseData.inputMuted)
document.getElementById("micMuteIcon").style.visibility = `visible`;
else
document.getElementById("micMuteIcon").style.visibility = `hidden`;
}
break;
}
break;
}
}
}
}
//////////////////////
// HELPER FUNCTIONS //
//////////////////////
function obswsSendRequest(ws, data) {
ws.send(
JSON.stringify({
"op": 6,
"d": data
}
));
}
function TimeToMilliseconds(hms) {
const [hours, minutes, seconds] = hms.split(':');
const totalSeconds = (+hours) * 60 * 60 + (+minutes) * 60 + (+seconds);
return totalSeconds * 1000;
}
function RemoveMilliseconds(timecode) {
const parts = timecode.split('.');
return parts[0];
}
function ConvertToMegabytes(bytes) {
return ((bytes / 1024) / 1024).toFixed(2);
}
function CreateGuid() {
function _p8(s) {
var p = (Math.random().toString(16) + "000000000").substr(2, 8);
return s ? "-" + p.substr(0, 4) + "-" + p.substr(4, 4) : p;
}
return _p8() + _p8(true) + _p8(true) + _p8();
}
function sha256(ascii) {
function rightRotate(value, amount) {
return (value >>> amount) | (value << (32 - amount));
};
var mathPow = Math.pow;
var maxWord = mathPow(2, 32);
var lengthProperty = 'length'
var i, j; // Used as a counter across the whole file
var result = ''
var words = [];
var asciiBitLength = ascii[lengthProperty] * 8;
//* caching results is optional - remove/add slash from front of this line to toggle
// Initial hash value: first 32 bits of the fractional parts of the square roots of the first 8 primes
// (we actually calculate the first 64, but extra values are just ignored)
var hash = sha256.h = sha256.h || [];
// Round constants: first 32 bits of the fractional parts of the cube roots of the first 64 primes
var k = sha256.k = sha256.k || [];
var primeCounter = k[lengthProperty];
/*/
var hash = [], k = [];
var primeCounter = 0;
//*/
var isComposite = {};
for (var candidate = 2; primeCounter < 64; candidate++) {
if (!isComposite[candidate]) {
for (i = 0; i < 313; i += candidate) {
isComposite[i] = candidate;
}
hash[primeCounter] = (mathPow(candidate, .5) * maxWord) | 0;
k[primeCounter++] = (mathPow(candidate, 1 / 3) * maxWord) | 0;
}
}
ascii += '\x80' // Append Ƈ' bit (plus zero padding)
while (ascii[lengthProperty] % 64 - 56) ascii += '\x00' // More zero padding
for (i = 0; i < ascii[lengthProperty]; i++) {
j = ascii.charCodeAt(i);
if (j >> 8) return; // ASCII check: only accept characters in range 0-255
words[i >> 2] |= j << ((3 - i) % 4) * 8;
}
words[words[lengthProperty]] = ((asciiBitLength / maxWord) | 0);
words[words[lengthProperty]] = (asciiBitLength)
// process each chunk
for (j = 0; j < words[lengthProperty];) {
var w = words.slice(j, j += 16); // The message is expanded into 64 words as part of the iteration
var oldHash = hash;
// This is now the undefinedworking hash", often labelled as variables a...g
// (we have to truncate as well, otherwise extra entries at the end accumulate
hash = hash.slice(0, 8);
for (i = 0; i < 64; i++) {
var i2 = i + j;
// Expand the message into 64 words
// Used below if
var w15 = w[i - 15], w2 = w[i - 2];
// Iterate
var a = hash[0], e = hash[4];
var temp1 = hash[7]
+ (rightRotate(e, 6) ^ rightRotate(e, 11) ^ rightRotate(e, 25)) // S1
+ ((e & hash[5]) ^ ((~e) & hash[6])) // ch
+ k[i]
// Expand the message schedule if needed
+ (w[i] = (i < 16) ? w[i] : (
w[i - 16]
+ (rightRotate(w15, 7) ^ rightRotate(w15, 18) ^ (w15 >>> 3)) // s0
+ w[i - 7]
+ (rightRotate(w2, 17) ^ rightRotate(w2, 19) ^ (w2 >>> 10)) // s1
) | 0
);
// This is only used once, so *could* be moved below, but it only saves 4 bytes and makes things unreadble
var temp2 = (rightRotate(a, 2) ^ rightRotate(a, 13) ^ rightRotate(a, 22)) // S0
+ ((a & hash[1]) ^ (a & hash[2]) ^ (hash[1] & hash[2])); // maj
hash = [(temp1 + temp2) | 0].concat(hash); // We don't bother trimming off the extra ones, they're harmless as long as we're truncating when we do the slice()
hash[4] = (hash[4] + temp1) | 0;
}
for (i = 0; i < 8; i++) {
hash[i] = (hash[i] + oldHash[i]) | 0;
}
}
for (i = 0; i < 8; i++) {
for (j = 3; j + 1; j--) {
var b = (hash[i] >> (j * 8)) & 255;
result += ((b < 16) ? 0 : '') + b.toString(16);
}
}
return result;
};
function hexToBase64(hexstring) {
return btoa(hexstring.match(/\w{2}/g).map(function (a) {
return String.fromCharCode(parseInt(a, 16));
}).join(""));
}
//////////////////////
// WEBSOCKET STATUS //
//////////////////////
// This function sets the visibility of the Streamer.bot status label on the overlay
function SetConnectionStatus(connected) {
let statusContainer = document.getElementById("statusContainer");
if (connected) {
statusContainer.style.background = "#2FB774";
statusContainer.innerText = "Connected!";
mainContainer.style.visibility = `visible`;
var tl = new TimelineMax();
tl
.to(statusContainer, 2, { opacity: 0, ease: Linear.easeNone });
}
else {
statusContainer.style.background = "#D12025";
statusContainer.innerText = "Connecting...";
statusContainer.style.opacity = 1;
mainContainer.style.visibility = `hidden`;
}
}
connectws();
setInterval(GetStreamStatus, 1000);
function GetStreamStatus() {
if (ws.readyState !== WebSocket.CLOSED) {
let data =
{
"requestType": "GetStreamStatus",
"requestId": CreateGuid(),
"requestData": {
}
}
obswsSendRequest(ws, data);
}
}
function GetStreamServiceSettings() {
let data =
{
"requestType": "GetStreamServiceSettings",
"requestId": CreateGuid(),
"requestData": {
}
}
obswsSendRequest(ws, data);
}
setInterval(GetProfileList, 200);
function GetProfileList() {
let data =
{
"requestType": "GetProfileList",
"requestId": CreateGuid(),
"requestData": {
}
}
obswsSendRequest(ws, data);
}
setInterval(GetStats, 1000);
function GetStats() {
let data =
{
"requestType": "GetStats",
"requestId": CreateGuid(),
"requestData": {
}
}
obswsSendRequest(ws, data);
}
setInterval(GetRecordStatus, 500);
function GetRecordStatus() {
let data =
{
"requestType": "GetRecordStatus",
"requestId": CreateGuid(),
"requestData": {
}
}
obswsSendRequest(ws, data);
}
if (obsMicInput != "")
{
setInterval(GetInputMute, 500);
function GetInputMute() {
let data =
{
"requestType": "GetInputMute",
"requestId": CreateGuid(),
"requestData": {
"inputName": obsMicInput
}
}
obswsSendRequest(ws, data);
}
}
function GetVideoSettings() {
let data =
{
"requestType": "GetVideoSettings",
"requestId": CreateGuid(),
"requestData": {
}
}
obswsSendRequest(ws, data);
}