From 04cb01fdcb8e17290a3b43a119ce24bc8a0223df Mon Sep 17 00:00:00 2001 From: Hampton Maxwell Date: Thu, 7 Jun 2018 22:51:50 -0700 Subject: [PATCH] Show stereoPan platform as Android MediaPlayer --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 48fe27be..d074e9aa 100644 --- a/README.md +++ b/README.md @@ -231,6 +231,7 @@ var styles = StyleSheet.create({ * [repeat](#repeat) * [resizeMode](#resizemode) * [selectedTextTrack](#selectedtexttrack) +* [stereoPan](#stereopan) * [volume](#volume) #### ignoreSilentSwitch @@ -337,6 +338,14 @@ If a track matching the specified Type (and Value if appropriate) is unavailable Platforms: Android ExoPlayer, iOS +#### stereoPan +The audio player’s stereo pan position. Any value between –1.0 and 1.0 is accepted. +* **-1.0** - Full left +* **0.0 (default)** - Center +* **1.0** - Full right + +Platforms: Android MediaPlayer + #### volume Adjust the volume. * **1.0 (default)** - Play at full volume @@ -345,14 +354,6 @@ Adjust the volume. Platforms: all -#### stereoPan -The audio player’s stereo pan position. Any value between –1.0 and 1.0 is accepted. -* **-1.0** - Full left -* **0.0 (default)** - Center -* **1.0** - Full right - -Platforms: Android - ### Additional props To see the full list of available props, you can check the [propTypes](https://github.com/react-native-community/react-native-video/blob/master/Video.js#L246) of the Video.js component.