Dan Isla

Results 61 comments of Dan Isla

@xhejtman love the demo of running Witcher 2 on Selkies! Nice work. I'll test the FBC+NVENC soon if I can get a copy of the NVIDIA Video Codec SDK... It...

> Turning of synchronization with `pulsesrc.set_property("provide-clock", False)` and `pulsesrc.set_property("do-timestamp", False)` improved the latency from what was around 200 ms in a good network to 100 ms. I know this solves...

I added comments to the code back when Selkies was first built explaining how this works: ``` # Let the audio source provide the global clock. # This is important...

The reported latency in the side panel is calculated by summing the latency components reported by the WebRTC stats. It's effectively network latency + video jitter buffer latency + audio...

With GKE, you can't use the "cert sign" usage. Running `kubectl describe csr` will show you the error: ``` Events: Type Reason Age From Message ---- ------ ---- ---- -------...

[This branch](https://github.com/selkies-project/python-xlib/tree/add-xfixes-cursor) adds support for the `XFixesCursorNotifyEvent` and the `GetCursorImage` request. ## Work left to go on upstream PR - [x] write example script showing usage in [`examples/xfixes-cursor-notify.py`](https://github.com/selkies-project/python-xlib/blob/add-xfixes-cursor/examples/xfixes-cursor-notify.py) - [...

Making some progress on this branch: https://github.com/selkies-project/selkies-gstreamer/tree/remote-cursors However, the cursors appear ghostly at the moment and appears that a couple of the pixels on the width wraps around. Probably something...

Fixed cursor transparency issue. The PNG library was expecting pixels in R,G,B,A order and I was decoding them in A,R,G,B per the XFixes spec. There is still a pixel wrapping...

Testing with XFCE4 and the `adwaita-icon-theme-full` package, the cursors appear huge. They are 96x96 pixels rather than 24x24. ![xfce large cursor](https://user-images.githubusercontent.com/323725/152659805-65ca71ae-e1e8-4b18-afb2-f8a6f3410c4c.jpg) Probably need to resize the cursor image locally using...

Latest commit creates the cursor and resizes it using PIL. Seems to be working pretty well so far. Probably well enough for an initial release. ![scaled cursor](https://user-images.githubusercontent.com/323725/152882449-a8c1bc8d-426f-4950-9bbb-2299a96b26cd.jpg) Remote cursors can...