Samuel Scheit

Results 208 comments of Samuel Scheit

Yes, it's very useful. I'm currently implementing a custom skia list renderer and I need a way to measure the performance and fps. Especially to see frame drops when scrolling...

I think the most pragmatic solution would be to show a link to the captcha image. Then the cli user can open the link in their browser, decipher the captcha...

@arjunByldd01 you could try to use `zenika/alpine-chrome:with-puppeteer` as a base image It should have all required dependencies installed

I'm having a look at this issue and can replicate it. to improve the latency a bit, you can set the `frameSize` argument to `1`, which should try to send...

@stoefln I've now implemented it using webrtc and now you can see it near realtime (80ms delay) https://github.com/user-attachments/assets/7d9a6817-4416-41e9-b291-72ade1e97968 Can you [contact me](https://samuelscheit.com/#contact) to discuss further details? - [Email](mailto:[email protected]) - [Telegram](https://t.me/SamuelScheit)...

I've tried these approaches: 1. using puppeteer.startScreencast() - no audio - bad latency with good (100% quality) png stream - good latency with bad (50% quality) jpeg stream - lagged...

If you want to guarantee quality I would advise to use a frame-by-frame rendering approach, e.g. using [captureStream(0)](https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/captureStream) and [requestFrame()](https://developer.mozilla.org/en-US/docs/Web/API/CanvasCaptureMediaStreamTrack/requestFrame). Also have a look at #185