Julian Waller
Julian Waller
I dont think that is a good idea. Satellite has no idea what page it is currently on, so it will be relying on both companion machines keeping the page...
Yeah, that sounds like the cause. I'm not sure on how this could be resolved, any minification that mangles exported names might trigger this? @nytamin any thoughts?
Except, that surely both the caller and module side should be minified to have the same names so it should still line up? Could you send me an example of...
For my memory: the threadedClass PR will help with this issue. There is another issue with the library getting confused after minification whenever we use `.constructor.name`
This is resolved in `2.0.0-nightly-20200626-195656-eb05a5c.0`. But there is still some work needed inside this library to remove other useages of `.constructor.name`
Are you wanting the current signal level, or the current fader level? For fairlight or classic audio? I dont think this library has any support for signal levels yet, but...
yeah, so this isnt currently supported. No reason other than it hasnt been requested/needed before. It won't be too hard to do, just a bit of thought to now throw...
I know the library works when used in the main electron process, but it appears that the renderer process is doing something odd that is tripping up the threading library....
What model of pi are you using here? On a pi4 I am seeing around 2% usage of a single core, so not a very significant load. My only concern...
## Shared Memory (Multithreading overhead) We can probably get some improvements by using SharedArrayBuffer or ArrayBuffer instead of using Buffer over the ipc bridge, as the buffers get converted to...