flutter_sound_system 0.0.4 copy "flutter_sound_system: ^0.0.4" to clipboard
flutter_sound_system: ^0.0.4 copied to clipboard

outdated

Flutter sound recorder and player.

Flutter Sound System #

Flutter sound recorder and player.

Getting Started #

Currently only working on Android.

Usage #

Android:

    // Storage permission
    FlutterSoundSystem.record('path to location including file name');

    await FlutterSoundSystem.isRecording().then((isRecording) async {
        if(isRecording){
          // If true..
        } else {
          // If false..
        }
    });
    String filePath = await FlutterSoundSystem.stopRecording(); // String

    await FlutterSoundSystem.isPlaying().then((isPlaying) async {
        if(isPlaying){
          // If true..
        } else {
          // If false..
        }
    });
    FlutterSoundSystem.play('File path');
    FlutterSoundSystem.stopPlaying();
    FlutterSoundSystem.pausePlaying();
1
likes
0
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter sound recorder and player.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_sound_system

Packages that implement flutter_sound_system