Go to file
ryanheise 1e323dd21b Update issue templates 2020-04-18 18:09:42 +10:00
.github/ISSUE_TEMPLATE Update issue templates 2020-04-18 18:09:42 +10:00
.idea Rename project to just_audio 2019-11-28 17:55:32 +11:00
android Make setAutomaticallyWaitsToMinimizeStalling noop on Android 2020-04-18 17:00:52 +10:00
darwin/Classes Check API availability on MacOS 2020-04-07 12:13:55 +10:00
example Update state before method channel calls complete. 2020-04-18 14:28:06 +10:00
ios MacOS support 2020-04-07 01:02:57 +10:00
lib Update state before method channel calls complete. 2020-04-18 14:28:06 +10:00
macos MacOS support 2020-04-07 01:02:57 +10:00
test Rename project to just_audio 2019-11-28 17:55:32 +11:00
.gitignore Project template 2019-11-26 01:50:21 +11:00
.metadata Project template 2019-11-26 01:50:21 +11:00
CHANGELOG.md Version 0.1.5 2020-04-15 23:36:35 +10:00
LICENSE Update Copyright dates 2020-01-02 13:37:22 +11:00
README.md Update supported web features 2020-04-07 12:39:25 +10:00
just_audio.iml Rename project to just_audio 2019-11-28 17:55:32 +11:00
pubspec.lock Update rxdart to 0.24.0 2020-04-15 23:33:22 +10:00
pubspec.yaml Version 0.1.5 2020-04-15 23:36:35 +10:00

README.md

just_audio

A Flutter plugin to play audio from URLs, files, assets and DASH/HLS streams. This plugin can be used with audio_service to play audio in the background and control playback from the lock screen, Android notifications, the iOS Control Center, and headset buttons.

Features

Feature Android iOS MacOS Web
read from URL
read from file
read from asset
DASH (untested) (untested) (untested)
HLS (untested) (untested) (untested)
play/pause/stop/seek
set volume (untested) (untested) (untested)
set speed (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 or submitting pull requests here.

Example

Initialisation:

final player = AudioPlayer();
var duration = await player.setUrl('https://foo.com/bar.mp3');

Standard controls:

player.play();
await player.seek(Duration(seconds: 10));
await player.pause();
await player.stop();

Clipping audio:

await player.setClip(start: Duration(seconds: 10), end: Duration(seconds: 20));
await player.play(); // Waits for playback to finish

Release resources:

await player.dispose();

Platform specific configuration

Android

If you wish to connect to non-HTTPS URLS, add the following attribute to the application element of your AndroidManifest.xml file:

    <application ... android:usesCleartextTraffic="true">

iOS

If you wish to connect to non-HTTPS URLS, add the following to your Info.plist file:

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
    <key>NSAllowsArbitraryLoadsForMedia</key>
    <true/>
</dict>

MacOS

To allow your MacOS application to access audio files on the Internet, add the following to your DebugProfile.entitlements and Release.entitlements files:

    <key>com.apple.security.network.client</key>
    <true/>

If you wish to connect to non-HTTPS URLS, add the following to your Info.plist file:

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
    <key>NSAllowsArbitraryLoadsForMedia</key>
    <true/>
</dict>

Todo

  • FLAC support
  • Gapless playback