alnitak / flutter_soloud

Flutter low-level audio plugin using SoLoud C++ library and FFI
MIT License
209 stars 21 forks source link

feat: mic input / capture #132

Open naychrist opened 3 days ago

naychrist commented 3 days ago

Description

This lib is great. However, I was disappointed to see that audio capture was removed. I was planning to use live audio input for a visualiser. My starting point was going to be to take the audio_data example and replace sound file input w microphone.

I understand why this was removed originally but is there any way to add this back as a separate package or recommendations on a third party package that would integrate well?

Requirements

alnitak commented 3 days ago

Hi @naychrist,

I am writing a separate package with the same "philosophy" of flutter_soloud. It will be able to listen and record with "silence detection and removal". It will also have a way to get wave and FFT data as flutter_soloud does, plus a volume dB value.

Actually, I just need to add web support and write docs since the release :(

naychrist commented 3 days ago

ah that sounds great @alnitak ! Any idea when you might release it? At the moment I would be content with desktop and an example to get me started.