flutteraudionoise

Flutter - packages for audio proccessing


I want to detect noise and disallow adding users to the common stream. Who knows some packages for audio proccessing for flutter? MB packages for native modules (android, ios)

I find some packages for example - coast_audio, but iam affraid that it's new package, and there is no link to api? only one example


Solution

  • There are multiple packages for audio processing you can choose from.

    I suggest one of them:

    In terms of detecting noise, the noise_meter and flutter_sound packages might be the most immediately useful. They provide access to audio level metering, which could be used as a basic form of noise detection.

    However, more advanced forms of noise detection (e.g. distinguishing speech from background noise) require more sophisticated audio processing techniques. For this, you might want to look into dedicated audio processing libraries - so external from Flutter and integrating them this way.