Florian Bruggisser
Florian Bruggisser
@Korijn Would it be possible to create a new wgpu release, since in `0.15.1` my changes of the merge request #486 are not present? This blocks using wgpu & pygfx...
Thanks for the PR, I will have a look at it hopefully next week.
Thanks for the contributions, but I it does not seem to work atm. Can you test it with `nanogui` as input module and fix the errors, it seems not to...
This repository is from 2015 and was written for MadMapper 2.2 which had the first API ability through OSC. I think MadMapper 3.6 offers new possibilities to interact with it.
It is implemented now in the api, but not documented yet.
Would be great if you could merge this, thanks!
For everyone having the same problem on MacOS, I just wrote a hacky solution to patch the `.dylib` loading into the current pip package code: ```python import pkgutil import re...
I guess the paper can be found here: https://diglib.eg.org/bitstream/handle/10.2312/egs20211023/057-060.pdf
I guess I got what was happening: The `WhisperSTTService` is not sending `UserStartedSpeakingFrame` and `UserStoppedSpeakingFrame`. Only the VAD is sending these messages and as long as it is not activated,...
A workaround would be to use [uv](https://docs.astral.sh/uv/concepts/resolution/#dependency-overrides) which supports global overrides for dependencies: ```toml dependencies = [ "mediapipe" ] [tool.uv] override-dependencies = [ "numpy>2" ] ``` However, this is not...