livekit_noise_filter 0.1.0+hotfix.1 copy "livekit_noise_filter: ^0.1.0+hotfix.1" to clipboard
livekit_noise_filter: ^0.1.0+hotfix.1 copied to clipboard

AI Noise Cancellation plugin for Livekit SDK.

Livekit Noise Filter for Flutter LiveKit SDK #

Currently supports iOS/macOS/Android

How to use #

You can add the livekit noise filter to your existing LiveKit app using the following steps.

  • add livekit_noise_filter to your pubspec.yaml
dependencies:
  livekit_noise_filter: ^0.1.0
  • Set livekit noise filter before connecting to room

final liveKitNoiseFilter = LiveKitNoiseFilter();

final room = Room(
      roomOptions: RoomOptions(
        defaultAudioCaptureOptions: AudioCaptureOptions(
          processor: liveKitNoiseFilter,
        ),
      ),
    );
await _room!.connect(url, token);
await _room!.localParticipant!.setMicrophoneEnabled(true);
  • You can turn the filter on or off to check that it is working properly.
liveKitNoiseFilter.setBypass(true | false);
1
likes
90
points
5.14k
downloads

Publisher

verified publisherlivekit.io

Weekly Downloads

AI Noise Cancellation plugin for Livekit SDK.

Homepage

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, flutter_webrtc, livekit_client

More

Packages that depend on livekit_noise_filter