Marco Bavagnoli

Results 172 comments of Marco Bavagnoli

Good point! But I still can't figure out why you don't see any compiling errors. `flutter_soloud` does use the Flutter `android.ndkVersion` as you can see [here](https://github.com/alnitak/flutter_soloud/blob/2b43fb342b1aa837b640f1503acd320f5d5e0f55/android/build.gradle#L38). Since you have cloned...

I remember that there were some errors when using NDK 29, but I just tried setting 29 in both plugin and example gradle, and it compiles fine! I also see...

Hi Filip, this sounds like the app is run on a non x86_64 (probably an arm64) machine running Linux. Maybe a Rasberry Pi which has arm64 architecture? Also due to...

> If that's the case, would building without Opus/Vorbis prevent this from happening? yes, the error clearly states that it cannot find the libraries, so by disabling the linking of...

Oh wow, that's weird :) I could only make a few guesses. It seems that `AudioOutputUnitStart` is trying to start initializing the output device, waiting for CoreAudio permission. But the...

After the #319, I'm asking if you think the mods you have done with `soloud.dar` are still valid. I'd leave your changes and merge it. Regarding the test, I have...

Hi @Yoda-Man, please give me some more info: the platform you use and maybe a piece of code.

I am still trying to manage this issue, but @yeyuchen198, can you please check if you configured the web environment? Here the ref: https://docs.page/alnitak/flutter_soloud_docs/get_started/web_notes

The problem comes from `Picture.toImageSync` https://github.com/flutter/flutter/issues/138627 While the bug is still open, `Picture.toImage` is used.

I was thinking of something like this: code ```dart sealed class Filter { const Filter( this.filterType, this.filterName, this.numParameters, this.parameterNames, this.mins, this.maxs, this.defs, ); final FilterType filterType; final String filterName; final...