Jacob Greenway

Results 6 issues of Jacob Greenway

I'm wondering if this can be implemented using just a web-worker (for the purposes of taking it off the main thread) instead of a service worker.

``` navigator.mediaDevices.getUserMedia({ video: true, audio: true }) .then((stream) => { let video = document.getElementById('video'); encodedStream = EncodedStream(stream, { mimeType: 'video/webm;codecs=opus,vp8;' }); decodedStream = DecodedStream({ videoElement: video, mimeType: 'video/webm;codecs=opus,vp8;' }); encodedStream.on('data',...

bug
upstream/browser

How to replicate: ```Javascript const mtw = require('mediastream-to-webm); navigator.mediaDevices.getUserMedia({ video: true, audio: true}).then(stream => { let encodedStream = mtw.EncodedStream(stream); encodedStream.on('data', (data) => { console.log(data); }); }); ``` then minimize your...

bug

I've found a bug with agents where on disconnecting/reconnecting due to temporary network failures then subscribing to a participant track the track reports as not muted even when it is...