From 4efd0b5fa4128ca7e885cba891e91ca689693a9d Mon Sep 17 00:00:00 2001 From: Joe Meyer Date: Tue, 11 Jun 2019 15:52:59 -0500 Subject: [PATCH] Updates README description --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8812be89..b5f99f21 100644 --- a/README.md +++ b/README.md @@ -975,12 +975,12 @@ Callback function that is called when the rate of playback changes - either paus Property | Type | Description --- | --- | --- -playbackRate | number | 1 if playback is ongoing and 0 otherwise +playbackRate | number | 0 when playback is paused, 1 when playing at normal speed. Other values when playback is slowed down or sped up Example: ``` { - playbackRate: 0, + playbackRate: 0, // indicates paused } ```