Play the specified resource as audio.
- 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.
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"]);
pubspec.yaml
flutter:
assets:
- audios/example.mp3
_speaker.play("example.mp3");