audio_streams 1.0.1 audio_streams: ^1.0.1 copied to clipboard
Support for Audio Streams in Flutter. Capable of streaming Linear PCM format with a bit depth of 16 bits and 32 bits. Streams microphone audio data as Stream<List<Int>>.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add audio_streams
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
audio_streams: ^1.0.1
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:audio_streams/audio_streams.dart';