It started to work - Chrome launched, tuned to the channel but then abruptly closed.
Now I am seeing the error:
throw new Error("Could not find START_RECORDING function in the browser context");
exports.getStream = getStream;
function assertExtensionLoaded(ext, opt) {
return __awaiter(this, void 0, void 0, function* () {
const wait = (ms) => new Promise(res => setTimeout(res, ms));
for (let currentTick = 0; currentTick < opt.times; currentTick++) {
// @ts-ignore
if (yield ext.evaluate(() => typeof START_RECORDING === "function"))
return;
yield wait(Math.pow(opt.each, currentTick));
}
throw new Error("Could not find START_RECORDING function in the browser context");
});
}
Any ideas?
PS: while it WAS working the encoder rate was surprisingly very low in terms of CPU usage!