From 01f76ee39c9e1719bf662aed9d26f484bb5eee12 Mon Sep 17 00:00:00 2001 From: ryanheise Date: Fri, 7 Aug 2020 02:49:57 +1000 Subject: [PATCH] Document setSpeed/setVolume --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1630513..8d78362 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,12 @@ Clipping audio: await player.setClip(start: Duration(seconds: 10), end: Duration(seconds: 20)); await player.play(); // Waits for playback to finish ``` +Adjusting audio: + +```dart +await player.setSpeed(2.0); // Double speed +await player.setVolume(0.5); // Halve volume +``` Gapless playlists: