Results 60 comments of Jeremy Harris

I had an issue on Android where pointercancel was being fired when I didn't expect it to, and seemed to resolve it by just using { pointer: { touch: true...

I did, actually. Noticed it on my Android device, then used BrowserStack to do some testing with as well, and noticed it happening on some devices, but not others, using...

Can confirm this issue is happening on Mac M1 using Terminal and iTerm for accessing window titles.

Screen orientation doesn't appear to be supported on iOS Safari less than 16.4, which was just released a few weeks ago. That's probably the cause of this issue: https://caniuse.com/screen-orientation

For me, in a local project, I'm not getting the embedded SVG to show up, but the styled QR code works (minus the custom artwork).

A solution that worked for me was generating a fixed size canvas, i.e. 300x300, and applying CSS scaling to it, which dynamically updates to fill it in w/ the parent...

So, I'm not the maintainer, but I was stuck with the same issue, and see that it's possible to await the raw data, via: `qrCode.getRawData("svg").then(data => console.log(data));` That might give...

Even though this filename says "server" (since it runs on Node) I think this contains examples of the APIs you need. https://github.com/node-webrtc/node-webrtc-examples/blob/master/examples/record-audio-video-stream/server.js https://github.com/node-webrtc/node-webrtc-examples/blob/f1d7b9a8483fac1a5b2b48da0dde3b2366b5225f/examples/record-audio-video-stream/server.js#L27-L43

Apologies if this is the wrong thread. Maybe someone will find it useful. ---- I figured out how to make this stream over WebRTC. The secret is to start the...

@vkarpuram I'm using Howler to mix several audio sources (i.e. instrument samples) into a single channel and broadcast them to several participants over WebRTC, who don't necessarily have Howler running...