Lukas
Lukas
I could overcome this problem with recursion: ```ts function myReplace(string: string | React.ReactNodeArray): React.ReactNodeArray { let result: React.ReactNodeArray; result = reactStringReplace(string, /123/, (match, i) => ( {myReplace(match)} )); result =...
You probably need to change the `play_command` in the config file, depending on your current alsa configuration.
Great to hear it works on a desktop machine too. I haven't tried that yet. Not sure if that would make things better, as it would introduce latency (and there...
As far as I know, the state of the art is to use a more sophisticated sound daemon/solution like pulseaudio or jack. That should also be the most comfortable way...
https://packages.debian.org/search?suite=default§ion=all&arch=any&searchon=names&keywords=python3-alsaaudio Its this package.. it should be available as long as the image is based on buster (which should be the case for new raspbian os images). I don‘t recall...
Thanks for reaching out. Hopefully I will have some time to try it out in the near future. I like the approach, which looks much more sophisticated than bt-speaker. I...
Ok, that can also be easily done with bash like this: ```bash (sleep 15; curl http://.../...) & ``` The reason why I didn't put it is that I couldn't fully...
If its possible with bluez, you should find it somewhere in the DBUS API docs here: https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc Not sure how much BT-Manager (https://github.com/liamw9534/bt-manager) can give hints
Another possibility I can think of could be pulseaudio if it is installed. AFAIK, many distributions will tweak the alsa config so that aplay will send data to the pulse...
Not verified but maybe the [alsa python](https://larsimmisch.github.io/pyalsaaudio/libalsaaudio.html) library crashes the whole thing. Are there any clues in the (systemd) log? According to https://github.com/raspberrypi/firmware/blob/master/boot/overlays/README `dtparam=audio=on` changes something in the alsa setup....