Marco Bavagnoli

Results 175 comments of Marco Bavagnoli

If I understand correctly, it is or it will be possible to use just the compiled WASM and use that with all the platforms? Making it possible to get rid...

This feature is landed in v2.1.5!

> Word from the Flutter team: > > > in the current state of world, using dart:js_interop to interop Flutter is a viable route. In the future, there maybe new...

@filiph 1. Yes, we don't need to write a new backend. Miniaudio acts as the audio backend for SoLoud C++ on all platforms. 2. I spent some time compiling an...

@superciccio I got the same error when trying to compile a standalone example. I had to add `-sSTACK_SIZE=1048576 -sALLOW_MEMORY_GROWTH` (maybe just the latter is needed). > The command I tried...

Maybe I could help with this. Save the following code to main.cpp in an empty dir. I have added some comments inside. Hope it help somehow. main.cpp ``` #include //...

> I think we miss each other I was talking an hello world with soloud 😅 Oh, I see ;) > Have you ever go it loaded in your browser...

I created a [new plugin](https://github.com/alnitak/flutter_soloud_web) with only web platform to see what problems we could hit. Calling simple C functions (bound in the JS) from Dart seems to work, but...

This is weird! There are no calls from within `SoLoud` to `SoLoudCapture` that could trigger the use of a microphone. Also, AFAIK, the permission should be explicitly written in the...

Since the capture feature is all made using only miniaudio, and the permission dialog should be popped with `pkg:permission_handler`, I really think this could be an OS "problem" that thinks...