Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 802 Bytes

README.md

File metadata and controls

50 lines (32 loc) · 802 Bytes

speaker

Play the specified resource as audio.

Feature

  • Speaking resources over HTTP(S)
  • Plays audio even when the app is in the background
  • You can define what happens when playback ends (normal or abnormal)
  • There is no way to stop it if it starts in the current version
  • iOS support.

Usage

  var _speaker = Speaker(onSpeakEnd: () async {
    // Write processing at the speak end.
  });

  await _speaker.play("speaking resource");
  var _speaker = Speaker(onSpeakEnd: () async {
    // Write processing at the all speak end.
  });

 
  await _speaker.plays(["speaking resource1", "speaking resource2"]);

local audio file integration

pubspec.yaml

flutter:
  assets:
    - audios/example.mp3
  _speaker.play("example.mp3");