just_audio/README.md

58 lines
1.9 KiB
Markdown
Raw Normal View History

2019-11-28 06:55:32 +00:00
# just_audio
2019-11-25 14:50:21 +00:00
2020-01-01 13:49:21 +00:00
A Flutter plugin to play audio from URLs, files, assets and DASH/HLS streams. This plugin can be used with [audio_service](https://pub.dev/packages/audio_service) to play audio in the background and control playback from the lock screen, Android notifications, the iOS Control Center, and headset buttons.
2019-11-25 14:50:21 +00:00
2019-11-28 05:16:54 +00:00
## Features
2019-11-25 14:50:21 +00:00
2020-03-07 03:05:54 +00:00
| Feature | Android | iOS | Web |
| ------- | :-------: | :-----: | :-----: |
| read from URL | ✅ | ✅ | ✅ |
| read from file | ✅ | (untested) | |
| read from asset | ✅ | (untested) | |
| DASH | ✅ | (untested) | (untested) |
| HLS | ✅ | (untested) | (untested) |
| play/pause/stop/seek | ✅ | ✅ | ✅ |
| set volume | ✅ | (untested) | (untested) |
| set speed | ✅ | (untested) | (untested) |
| custom actions | ✅ | (untested) | (untested) |
| clip audio | ✅ | | ✅ |
| dispose | ✅ | ✅ | ✅ |
This plugin has been tested on Android and Web, and is being made available for testing on iOS. Please consider reporting any bugs you encounter [here](https://github.com/ryanheise/just_audio/issues) or submitting pull requests [here](https://github.com/ryanheise/just_audio/pulls).
2019-11-28 06:59:38 +00:00
## Example
2020-01-01 13:49:21 +00:00
Initialisation:
2019-11-28 06:59:38 +00:00
```dart
final player = AudioPlayer();
2020-01-01 13:49:21 +00:00
var duration = await player.setUrl('https://foo.com/bar.mp3');
```
Standard controls:
```dart
2019-12-31 09:38:46 +00:00
player.play();
2020-01-01 13:49:21 +00:00
await player.seek(Duration(seconds: 10));
await player.pause();
2019-12-31 09:38:46 +00:00
await player.stop();
2020-01-01 13:49:21 +00:00
```
Clipping audio:
```dart
2019-12-31 09:38:46 +00:00
await player.setClip(start: Duration(seconds: 10), end: Duration(seconds: 20));
2020-01-01 13:49:21 +00:00
await player.play(); // Waits for playback to finish
```
Release resources:
```dart
2019-11-28 06:59:38 +00:00
await player.dispose();
```
2020-01-01 13:49:21 +00:00
## Todo
* FLAC support
* Gapless playback