Liam Appelbe
Liam Appelbe
How do I convert the raw data obtained by the microphone into the data required for the spectrogram?
> Is there a suitable plugin library for STFT.stream, I don't know much about audio Not sure what you mean. You can use this package anywhere you'd want to use...
I'm not working on it at the moment.
Any idea how flaky this is? I'm having trouble reproducing it locally.
As far as I can tell, there's nothing special about the temporary isolates in this regard. They go through the same `Isolate::InitIsolate` method as ordinary isolates, which calls `IsolateGroup::RegisterIsolate`, so...
Actually, `Isolate::creation_enabled_` is already implicitly checked in `Isolate::InitIsolate` by `Isolate::TryMarkIsolateReady`. So `Isolate::InitIsolate` should always return null after shutdown. There's an `ASSERT` in `IsolateGroup::EnterTemporaryIsolate()` that checks that the temp isolate is...
This is due to [isolate groups](https://dart.dev/language/concurrency#performance-and-isolate-groups). `isolateIds` (and its documentation) predates the introduction of isolate groups, so it's pretty outdated. The coverage counters are shared between all the isolates in...
> Is it enough for just one isolate per group to be alive at the moment of collection in order to include coverage from all isolates that ever existed within...
> Extension support (#1815) might need to be added to implement default initialisation functionality If there's a detail of this PR that will require a whole lot of extra effort...
> Pros for `Uri`: > > * Predictable behavior when resolving. I'd prefer not to use URIs. I think their resolving logic is actually pretty confusing, because it's very opinionated...
Yeah, I think it makes sense to fix the bug from both ends, if possible. I'll experiment with eliminating proxies from our bindings today.