+ );
+}
+
+export default PlatformsList;
diff --git a/docs/pages/component/drm.md b/docs/pages/component/drm.mdx
similarity index 65%
rename from docs/pages/component/drm.md
rename to docs/pages/component/drm.mdx
index f01b48d1..7032ecdd 100644
--- a/docs/pages/component/drm.md
+++ b/docs/pages/component/drm.mdx
@@ -1,3 +1,5 @@
+import PlatformsList from './PlatformsList/PlatformsList.tsx';
+
# DRM
> **Note:** DRM is not supported on visionOS yet.
@@ -9,37 +11,40 @@ This feature will disable the use of `TextureView` on Android.
DRM object allows this members:
-| Property | Type | Default | Platform | Description |
-| --- | --- | --- | --- | --- |
-| [`type`](#type) | DRMType | undefined | iOS/Android | Specifies which type of DRM you are going to use, DRMType is an enum exposed on the JS module ('fairplay', 'playready', ...) |
-| [`licenseServer`](#licenseserver) | string | undefined | iOS/Android | Specifies the license server URL |
-| [`headers`](#headers) | Object | undefined | iOS/Android | Specifies the headers send to the license server URL on license acquisition |
-| [`contentId`](#contentid) | string | undefined | iOS | Specify the content id of the stream, otherwise it will take the host value from `loadingRequest.request.URL.host` (f.e: `skd://testAsset` -> will take `testAsset`) |
-| [`certificateUrl`](#certificateurl) | string | undefined | iOS | Specifies the url to obtain your ios certificate for fairplay, Url to the .cer file |
-| [`base64Certificate`](#base64certificate) | bool | false | iOS | Specifies whether or not the certificate returned by the `certificateUrl` is on base64 |
-| [`getLicense`](#getlicense)| function | undefined | iOS | Rather than setting the `licenseServer` url to get the license, you can manually get the license on the JS part, and send the result to the native part to configure FairplayDRM for the stream |
-
### `base64Certificate`
+
+
+Type: bool\
+Default: false
+
Whether or not the certificate url returns it on base64.
-Platforms: iOS
-
### `certificateUrl`
+
+
+Type: string\
+Default: undefined
+
URL to fetch a valid certificate for FairPlay.
-Platforms: iOS
-
### `getLicense`
-`licenseServer` and `headers` will be ignored. You will obtain as argument the `SPC` (as ASCII string, you will probably need to convert it to base 64) obtained from your `contentId` + the provided certificate via
-```objc
-[loadingRequest streamingContentKeyRequestDataForApp:certificateData contentIdentifier:contentIdData options:nil error:&spcError];
-```
+
+
+Type: function\
+Default: undefined
+
+Rather than setting the `licenseServer` url to get the license, you can manually get the license on the JS part, and send the result to the native part to configure FairplayDRM for the stream
+
+`licenseServer` and `headers` will be ignored. You will obtain as argument the `SPC`
+(as ASCII string, you will probably need to convert it to base 64) obtained from
+your `contentId` + the provided certificate via `objc [loadingRequest streamingContentKeyRequestDataForApp:certificateData
+contentIdentifier:contentIdData options:nil error:&spcError]; `
Also, you will receive the `contentId` and a `licenseUrl` URL defined as `loadingRequest.request.URL.absoluteString ` or as the `licenseServer` prop if it's passed.
-
+
You should return on this method a `CKC` in Base64, either by just returning it or returning a `Promise` that resolves with the `CKC`.
With this prop you can override the license acquisition flow, as an example:
@@ -50,24 +55,31 @@ getLicense: (spcString, contentId, licenseUrl) => {
const formData = new FormData();
formData.append('spc', base64spc);
return fetch(`https://license.pallycon.com/ri/licenseManager.do`, {
- method: 'POST',
- headers: {
- 'pallycon-customdata-v2': 'd2VpcmRiYXNlNjRzdHJpbmcgOlAgRGFuaWVsIE1hcmnxbyB3YXMgaGVyZQ==',
- 'Content-Type': 'application/x-www-form-urlencoded',
- },
- body: formData
- }).then(response => response.text()).then((response) => {
+ method: 'POST',
+ headers: {
+ 'pallycon-customdata-v2':
+ 'd2VpcmRiYXNlNjRzdHJpbmcgOlAgRGFuaWVsIE1hcmnxbyB3YXMgaGVyZQ==',
+ 'Content-Type': 'application/x-www-form-urlencoded',
+ },
+ body: formData,
+ })
+ .then((response) => response.text())
+ .then((response) => {
return response;
- }).catch((error) => {
+ })
+ .catch((error) => {
console.error('Error', error);
- });
-}
+ });
+};
```
-Platforms: iOS
-
### `headers`
+
+
+Type: Object\
+Default: undefined
+
You can customize headers send to the licenseServer.
Example:
@@ -87,14 +99,33 @@ drm={{
### `licenseServer`
+
+
+Type: string\
+Default: false
+
The URL pointing to the licenseServer that will provide the authorization to play the protected stream.
### `type`
+
+
+Type: DRMType\
+Default: undefined
+
You can specify the DRM type, either by string or using the exported DRMType enum.
Valid values are, for Android: DRMType.WIDEVINE / DRMType.PLAYREADY / DRMType.CLEARKEY.
for iOS: DRMType.FAIRPLAY
+### `contentId`
+
+
+
+Type: string\
+Default: undefined
+
+Specify the content id of the stream, otherwise it will take the host value from `loadingRequest.request.URL.host` (f.e: `skd://testAsset` -> will take `testAsset`)
+
## Common Usage Scenarios
### Send cookies to license server
diff --git a/docs/pages/component/events.md b/docs/pages/component/events.md
deleted file mode 100644
index aa7aa0c2..00000000
--- a/docs/pages/component/events.md
+++ /dev/null
@@ -1,565 +0,0 @@
-# Events
-This page shows the list of available callbacks to handle player notifications
-
-## List
-| Name | Platforms Support |
-|-------------------------------------------------------------------------------------------------|---------------------------|
-| [onAudioBecomingNoisy](#onaudiobecomingnoisy) | Android, iOS |
-| [onAudioFocusChanged](#onaudiofocuschanged) | Android |
-| [onAudioTracks](#onaudiotracks) | Android, iOS |
-| [onBandwidthUpdate](#onbandwidthupdate) | Android |
-| [onBuffer](#onbuffer) | Android, iOS |
-| [onEnd](#onend) | All |
-| [onError](#onerror) | All |
-| [onExternalPlaybackChange](#onexternalplaybackchange) | iOS |
-| [onFullscreenPlayerWillPresent](#onfullscreenplayerwillpresent) | Android, iOS, visionOS |
-| [onFullscreenPlayerDidPresent](#onfullscreenplayerdidpresent) | Android, iOS, visionOS |
-| [onFullscreenPlayerWillDismiss](#onfullscreenplayerwilldismiss) | Android, iOS, visionOS |
-| [onFullscreenPlayerDidDismiss](#onfullscreenplayerdiddismiss) | Android, iOS, visionOS |
-| [onLoad](#onload) | All |
-| [onLoadStart](#onloadstart) | All |
-| [onPictureInPictureStatusChanged](#onpictureinpicturestatuschanged) | iOS |
-| [onPlaybackRateChange](#onplaybackratechange) | All |
-| [onPlaybackStateChanged](#onplaybackstatechanged) | Android, iOS, visionOS |
-| [onProgress](#onprogress) | All |
-| [onReadyForDisplay](#onreadyfordisplay) | Android, iOS |
-| [onReceiveAdEvent](#onreceiveadevent) | Android, iOS |
-| [onRestoreUserInterfaceForPictureInPictureStop](#onrestoreuserinterfaceforpictureinpicturestop) | iOS, visionOS |
-| [onSeek](#onseek) | All |
-| [onTimedMetadata](#ontimedmetadata) | Android, iOS, visionOS |
-| [onTextTracks](#ontexttracks) | Android, iOS |
-| [onVideoTracks](#onvideotracks) | Android |
-| [onVolumeChange](#onvolumechange) | Android, iOS, visionOS |
-
-
-## Details
-### `onAudioBecomingNoisy`
-Callback function that is called when the audio is about to become 'noisy' due to a change in audio outputs. Typically this is called when audio output is being switched from an external source like headphones back to the internal speaker. It's a good idea to pause the media when this happens so the speaker doesn't start blasting sound.
-
-Payload: none
-
-Platforms: Android, iOS
-
-### `onAudioFocusChanged`
-Callback function that is called when the audio focus changes. This is called when the audio focus is gained or lost. This is useful for determining if the media should be paused or not.
-
-Payload:
-Property | Type | Description
---- | --- | ---
-hasAudioFocus | boolean | Boolean indicating whether the media has audio focus
-
-Example:
-```javascript
-{
- hasAudioFocus: true
-}
-```
-
-### `onAudioTracks`
-Callback function that is called when audio tracks change
-
-Payload:
-
-An **array** of
-Property | Type | Description
---- | --- | ---
-index | number | Index number of the track
-title | string | Description of the track
-language | string | 2 letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) or 3 letter [ISO 639-2](https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes) language code
-type | string | Mime type of track
-
-Example:
-```javascript
-{
- audioTracks: [
- { language: 'es', title: 'Spanish', type: 'audio/mpeg', index: 0 },
- { language: 'en', title: 'English', type: 'audio/mpeg', index: 1 }
- ]
-}
-```
-
-### `onBandwidthUpdate`
-Callback function that is called when the available bandwidth changes.
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-bitrate | number | The estimated bitrate in bits/sec
-width | number | The width of the video (android only)
-height | number | The height of the video (android only)
-trackId | string | The track ID of the video track (android only)
-
-Example on iOS:
-```javascript
-{
- bitrate: 1000000
-}
-```
-
-Example on Android:
-```javascript
-{
- bitrate: 1000000
- width: 1920
- height: 1080
- trackId: 'some-track-id'
-}
-```
-
-Note: On Android, you must set the [reportBandwidth](#reportbandwidth) prop to enable this event. This is due to the high volume of events generated.
-
-Platforms: Android
-
-### `onBuffer`
-Callback function that is called when the player buffers.
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-isBuffering | boolean | Boolean indicating whether buffering is active
-
-Example:
-```javascript
-{
- isBuffering: true
-}
-```
-
-Platforms: Android, iOS
-
-### `onEnd`
-Callback function that is called when the player reaches the end of the media.
-
-Payload: none
-
-Platforms: all
-
-### `onError`
-Callback function that is called when the player experiences a playback error.
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-error | object | Object containing properties with information about the error
-
-Platforms: all
-
-### `onExternalPlaybackChange`
-Callback function that is called when external playback mode for current playing video has changed. Mostly useful when connecting/disconnecting to Apple TV – it's called on connection/disconnection.
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-isExternalPlaybackActive | boolean | Boolean indicating whether external playback mode is active
-
-Example:
-```javascript
-{
- isExternalPlaybackActive: true
-}
-```
-
-Platforms: iOS
-
-### `onFullscreenPlayerWillPresent`
-Callback function that is called when the player is about to enter fullscreen mode.
-
-Payload: none
-
-Platforms: Android, iOS
-
-### `onFullscreenPlayerDidPresent`
-Callback function that is called when the player has entered fullscreen mode.
-
-Payload: none
-
-Platforms: Android, iOS
-
-### `onFullscreenPlayerWillDismiss`
-Callback function that is called when the player is about to exit fullscreen mode.
-
-Payload: none
-
-Platforms: Android, iOS
-
-### `onFullscreenPlayerDidDismiss`
-Callback function that is called when the player has exited fullscreen mode.
-
-Payload: none
-
-Platforms: Android, iOS
-
-### `onLoad`
-Callback function that is called when the media is loaded and ready to play.
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-currentTime | number | Time in seconds where the media will start
-duration | number | Length of the media in seconds
-naturalSize | object | Properties: * width - Width in pixels that the video was encoded at * height - Height in pixels that the video was encoded at * orientation - "portrait" or "landscape"
-audioTracks | array | An array of audio track info objects with the following properties: * index - Index number * title - Description of the track * language - 2 letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) or 3 letter [ISO639-2](https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes) language code * type - Mime type of track
-textTracks | array | An array of text track info objects with the following properties: * index - Index number * title - Description of the track * language - 2 letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) or 3 letter [ISO 639-2](https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes) language code * type - Mime type of track
-videoTracks | array | An array of video track info objects with the following properties: * trackId - ID for the track * bitrate - Bit rate in bits per second * codecs - Comma separated list of codecs * height - Height of the video * width - Width of the video
-
-Example:
-```javascript
-{
- canPlaySlowForward: true,
- canPlayReverse: false,
- canPlaySlowReverse: false,
- canPlayFastForward: false,
- canStepForward: false,
- canStepBackward: false,
- currentTime: 0,
- duration: 5910.208984375,
- naturalSize: {
- height: 1080
- orientation: 'landscape'
- width: '1920'
- },
- audioTracks: [
- { language: 'es', title: 'Spanish', type: 'audio/mpeg', index: 0 },
- { language: 'en', title: 'English', type: 'audio/mpeg', index: 1 }
- ],
- textTracks: [
- { title: '#1 French', language: 'fr', index: 0, type: 'text/vtt' },
- { title: '#2 English CC', language: 'en', index: 1, type: 'text/vtt' },
- { title: '#3 English Director Commentary', language: 'en', index: 2, type: 'text/vtt' }
- ],
- videoTracks: [
- { bitrate: 3987904, codecs: "avc1.640028", height: 720, trackId: "f1-v1-x3", width: 1280 },
- { bitrate: 7981888, codecs: "avc1.640028", height: 1080, trackId: "f2-v1-x3", width: 1920 },
- { bitrate: 1994979, codecs: "avc1.4d401f", height: 480, trackId: "f3-v1-x3", width: 848 }
- ]
-}
-```
-
-Platforms: all
-
-### `onLoadStart`
-Callback function that is called when the media starts loading.
-
-Payload:
-
-Property | Description
---- | ---
-isNetwork | boolean | Boolean indicating if the media is being loaded from the network
-type | string | Type of the media. Not available on Windows
-uri | string | URI for the media source. Not available on Windows
-
-Example:
-```javascript
-{
- isNetwork: true,
- type: '',
- uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8'
-}
-```
-
-Platforms: all
-
-### `onPlaybackStateChanged`
-Callback function that is called when the playback state changes.
-
-Payload:
-
-Property | Description
---- | ---
-isPlaying | boolean | Boolean indicating if the media is playing or not
-
-Example:
-```javascript
-{
- isPlaying: true,
-}
-```
-
-Platforms: Android, iOS
-
-### `onPictureInPictureStatusChanged`
-Callback function that is called when picture in picture becomes active or inactive.
-
-Property | Type | Description
---- | --- | ---
-isActive | boolean | Boolean indicating whether picture in picture is active
-
-Example:
-```javascript
-{
-isActive: true
-}
-```
-
-Platforms: iOS
-
-### `onPlaybackRateChange`
-Callback function that is called when the rate of playback changes - either paused or starts/resumes.
-
-Property | Type | Description
---- | --- | ---
-playbackRate | number | 0 when playback is paused, 1 when playing at normal speed. Other values when playback is slowed down or sped up
-
-Example:
-```javascript
-{
- playbackRate: 0, // indicates paused
-}
-```
-
-Platforms: all
-
-### `onProgress`
-Callback function that is called every progressUpdateInterval milliseconds with info about which position the media is currently playing.
-
-Property | Type | Description
---- | --- | ---
-currentTime | number | Current position in seconds
-playableDuration | number | Position to where the media can be played to using just the buffer in seconds
-seekableDuration | number | Position to where the media can be seeked to in seconds. Typically, the total length of the media
-
-Example:
-```javascript
-{
- currentTime: 5.2,
- playableDuration: 34.6,
- seekableDuration: 888
-}
-```
-
-Platforms: all
-
-### `onReadyForDisplay`
-Callback function that is called when the first video frame is ready for display. This is when the poster is removed.
-
-Payload: none
-
-* iOS: [readyForDisplay](https://developer.apple.com/documentation/avkit/avplayerviewcontroller/1615830-readyfordisplay?language=objc)
-* Android [STATE_READY](https://exoplayer.dev/doc/reference/com/google/android/exoplayer2/Player.html#STATE_READY)
-
-Platforms: Android, iOS, Web
-
-### `onReceiveAdEvent`
-Callback function that is called when an AdEvent is received from the IMA's SDK.
-
-Enum `AdEvent` possible values for [Android](https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/reference/js/google.ima.AdEvent) and [iOS](https://developers.google.com/interactive-media-ads/docs/sdks/ios/client-side/reference/Enums/IMAAdEventType):
-
-
-Events
-
-| Event | Platform | Description |
-|----------------------------|---------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| `AD_BREAK_ENDED` | iOS | Fired the first time each ad break ends. Applications must reenable seeking when this occurs (only used for dynamic ad insertion). |
-| `AD_BREAK_READY` | Android, iOS | Fires when an ad rule or a VMAP ad break would have played if autoPlayAdBreaks is false. |
-| `AD_BREAK_STARTED` | iOS | Fired first time each ad break begins playback. If an ad break is watched subsequent times this will not be fired. Applications must disable seeking when this occurs (only used for dynamic ad insertion). |
-| `AD_BUFFERING` | Android | Fires when the ad has stalled playback to buffer. |
-| `AD_CAN_PLAY` | Android | Fires when the ad is ready to play without buffering, either at the beginning of the ad or after buffering completes. |
-| `AD_METADATA` | Android | Fires when an ads list is loaded. |
-| `AD_PERIOD_ENDED` | iOS | Fired every time the stream switches from advertising or slate to content. This will be fired even when an ad is played a second time or when seeking into an ad (only used for dynamic ad insertion). |
-| `AD_PERIOD_STARTED` | iOS | Fired every time the stream switches from content to advertising or slate. This will be fired even when an ad is played a second time or when seeking into an ad (only used for dynamic ad insertion). |
-| `AD_PROGRESS` | Android | Fires when the ad's current time value changes. The event `data` will be populated with an AdProgressData object. |
-| `ALL_ADS_COMPLETED` | Android, iOS | Fires when the ads manager is done playing all the valid ads in the ads response, or when the response doesn't return any valid ads. |
-| `CLICK` | Android, iOS | Fires when the ad is clicked. |
-| `COMPLETED` | Android, iOS | Fires when the ad completes playing. |
-| `CONTENT_PAUSE_REQUESTED` | Android | Fires when content should be paused. This usually happens right before an ad is about to cover the content. |
-| `CONTENT_RESUME_REQUESTED` | Android | Fires when content should be resumed. This usually happens when an ad finishes or collapses. |
-| `CUEPOINTS_CHANGED` | iOS | Cuepoints changed for VOD stream (only used for dynamic ad insertion). |
-| `DURATION_CHANGE` | Android | Fires when the ad's duration changes. |
-| `ERROR` | Android, iOS | Fires when an error occurred while loading the ad and prevent it from playing. |
-| `FIRST_QUARTILE` | Android, iOS | Fires when the ad playhead crosses first quartile. |
-| `IMPRESSION` | Android | Fires when the impression URL has been pinged. |
-| `INTERACTION` | Android | Fires when an ad triggers the interaction callback. Ad interactions contain an interaction ID string in the ad data. |
-| `LINEAR_CHANGED` | Android | Fires when the displayed ad changes from linear to nonlinear, or the reverse. |
-| `LOADED` | Android, iOS | Fires when ad data is available. |
-| `LOG` | Android, iOS | Fires when a non-fatal error is encountered. The user need not take any action since the SDK will continue with the same or next ad playback depending on the error situation. |
-| `MIDPOINT` | Android, iOS | Fires when the ad playhead crosses midpoint. |
-| `PAUSED` | Android, iOS | Fires when the ad is paused. |
-| `RESUMED` | Android, iOS | Fires when the ad is resumed. |
-| `SKIPPABLE_STATE_CHANGED` | Android | Fires when the displayed ads skippable state is changed. |
-| `SKIPPED` | Android, iOS | Fires when the ad is skipped by the user. |
-| `STARTED` | Android, iOS | Fires when the ad starts playing. |
-| `STREAM_LOADED` | iOS | Stream request has loaded (only used for dynamic ad insertion). |
-| `TAPPED` | iOS | Fires when the ad is tapped. |
-| `THIRD_QUARTILE` | Android, iOS | Fires when the ad playhead crosses third quartile. |
-| `UNKNOWN` | iOS | An unknown event has fired |
-| `USER_CLOSE` | Android | Fires when the ad is closed by the user. |
-| `VIDEO_CLICKED` | Android | Fires when the non-clickthrough portion of a video ad is clicked. |
-| `VIDEO_ICON_CLICKED` | Android | Fires when a user clicks a video icon. |
-| `VOLUME_CHANGED` | Android | Fires when the ad volume has changed. |
-| `VOLUME_MUTED` | Android | Fires when the ad volume has been muted. |
-
-
-Payload:
-
-| Property | Type | Description |
-|----------|-------------------------------------|-----------------------|
-| event | AdEvent | The ad event received |
-| data | Record \| undefined | The ad event data |
-
-Example:
-```json
-{
- "data": {
- "key": "value"
- },
- "event": "LOG"
-}
-```
-
-Platforms: Android, iOS
-
-### `onRestoreUserInterfaceForPictureInPictureStop`
-Callback function that corresponds to Apple's [`restoreUserInterfaceForPictureInPictureStopWithCompletionHandler`](https://developer.apple.com/documentation/avkit/avpictureinpicturecontrollerdelegate/1614703-pictureinpicturecontroller?language=objc). Call `restoreUserInterfaceForPictureInPictureStopCompleted` inside of this function when done restoring the user interface.
-
-Payload: none
-
-Platforms: iOS
-
-### `onSeek`
-Callback function that is called when a seek completes.
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-currentTime | number | The current time after the seek
-seekTime | number | The requested time
-
-Example:
-```javascript
-{
- currentTime: 100.5
- seekTime: 100
-}
-```
-
-Both the currentTime & seekTime are reported because the video player may not seek to the exact requested position in order to improve seek performance.
-
-
-Platforms: Android, iOS, Windows UWP
-
-### `onTimedMetadata`
-Callback function that is called when timed metadata becomes available
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-metadata | array | Array of metadata objects
-
-Example:
-```javascript
-{
- metadata: [
- { value: 'Streaming Encoder', identifier: 'TRSN' },
- { value: 'Internet Stream', identifier: 'TRSO' },
- { value: 'Any Time You Like', identifier: 'TIT2' }
- ]
-}
-```
-
-Platforms: Android, iOS
-
-### `onTextTracks`
-Callback function that is called when text tracks change
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-index | number | Internal track ID
-title | string | Descriptive name for the track
-language | string | 2 letter [ISO 639-1 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) representing the language
-type | string | Mime type of the track * TextTrackType.SRT - SubRip (.srt) * TextTrackType.TTML - TTML (.ttml) * TextTrackType.VTT - WebVTT (.vtt) iOS only supports VTT, Android supports all 3
-selected | boolean | true if track is playing
-
-
-Example:
-```javascript
-{
- textTracks: [
- {
- index: 0,
- title: 'Any Time You Like',
- type: 'srt',
- selected: true
- }
- ]
-}
-```
-
-### `onTextTrackDataChanged`
-Callback function that is called when new subtitle data is available. It provides the actual subtitle content for the current selected text track, if available (mainly WebVTT).
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-`subtitleTracks` | `string` | The subtitles text content in a compatible format.
-
-
-Example:
-```javascript
-{
- subtitleTracks: "This blade has a dark past.",
-}
-```
-
-Platforms: iOS
-
-### `onVideoTracks`
-Callback function that is called when video tracks change
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-trackId | number | Internal track ID
-codecs | string | MimeType of codec used for this track
-width | number | Track width
-height | number | Track height
-bitrate | number | Bitrate in bps
-selected | boolean | true if track is selected for playing
-
-
-Example:
-```javascript
-{
- videoTracks: [
- {
- trackId: 0,
- codecs: 'video/mp4',
- width: 1920,
- height: 1080,
- bitrate: 10000,
- selected: true
- }
- ]
-}
-```
-
-Platforms: Android
-
-### `onVolumeChange`
-Callback function that is called when the volume of player changes.
-> Note: This event applies to the volume of the player, not the volume of the device.
-
-Payload:
-
-Property | Type | Description
---- | --- | ---
-volume | number | The volume of the player (between 0 and 1)
-
-Example:
-```javascript
-{
- volume: 0.5
-}
-```
-
-Platforms: Android, iOS
diff --git a/docs/pages/component/events.mdx b/docs/pages/component/events.mdx
new file mode 100644
index 00000000..131c628d
--- /dev/null
+++ b/docs/pages/component/events.mdx
@@ -0,0 +1,591 @@
+import PlatformsList from './PlatformsList/PlatformsList.tsx';
+
+# Events
+
+This page shows the list of available callbacks to handle player notifications
+
+## Details
+
+### `onAudioBecomingNoisy`
+
+
+
+Callback function that is called when the audio is about to become 'noisy' due to
+a change in audio outputs. Typically this is called when audio output is being switched
+from an external source like headphones back to the internal speaker. It's a good
+idea to pause the media when this happens so the speaker doesn't start blasting sound.
+
+Payload: none
+
+### `onAudioFocusChanged`
+
+
+
+Callback function that is called when the audio focus changes. This is called when the audio focus is gained or lost. This is useful for determining if the media should be paused or not.
+
+Payload:
+Property | Type | Description
+--- | --- | ---
+hasAudioFocus | boolean | Boolean indicating whether the media has audio focus
+
+Example:
+
+```javascript
+{
+ hasAudioFocus: true;
+}
+```
+
+### `onAudioTracks`
+
+
+
+Callback function that is called when audio tracks change
+
+Payload:
+
+An **array** of
+Property | Type | Description
+--- | --- | ---
+index | number | Index number of the track
+title | string | Description of the track
+language | string | 2 letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) or 3 letter [ISO 639-2](https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes) language code
+type | string | Mime type of track
+
+Example:
+
+```javascript
+{
+ audioTracks: [
+ {language: 'es', title: 'Spanish', type: 'audio/mpeg', index: 0},
+ {language: 'en', title: 'English', type: 'audio/mpeg', index: 1},
+ ];
+}
+```
+
+### `onBandwidthUpdate`
+
+
+
+Callback function that is called when the available bandwidth changes.
+
+Payload:
+
+| Property | Type | Description |
+| -------- | ------ | ---------------------------------------------- |
+| bitrate | number | The estimated bitrate in bits/sec |
+| width | number | The width of the video (android only) |
+| height | number | The height of the video (android only) |
+| trackId | string | The track ID of the video track (android only) |
+
+Example on iOS:
+
+```javascript
+{
+ bitrate: 1000000;
+}
+```
+
+Example on Android:
+
+```javascript
+{
+ bitrate: 1000000;
+ width: 1920;
+ height: 1080;
+ trackId: 'some-track-id';
+}
+```
+
+Note: On Android, you must set the [reportBandwidth](#reportbandwidth) prop to enable this event. This is due to the high volume of events generated.
+
+### `onBuffer`
+
+
+
+Callback function that is called when the player buffers.
+
+Payload:
+
+| Property | Type | Description |
+| ----------- | ------- | ---------------------------------------------- |
+| isBuffering | boolean | Boolean indicating whether buffering is active |
+
+Example:
+
+```javascript
+{
+ isBuffering: true;
+}
+```
+
+### `onEnd`
+
+
+
+Callback function that is called when the player reaches the end of the media.
+
+Payload: none
+
+### `onError`
+
+
+
+Callback function that is called when the player experiences a playback error.
+
+Payload:
+
+| Property | Type | Description |
+| -------- | ------ | ------------------------------------------------------------- |
+| error | object | Object containing properties with information about the error |
+
+### `onExternalPlaybackChange`
+
+
+
+Callback function that is called when external playback mode for current playing video has changed. Mostly useful when connecting/disconnecting to Apple TV – it's called on connection/disconnection.
+
+Payload:
+
+| Property | Type | Description |
+| ------------------------ | ------- | ----------------------------------------------------------- |
+| isExternalPlaybackActive | boolean | Boolean indicating whether external playback mode is active |
+
+Example:
+
+```javascript
+{
+ isExternalPlaybackActive: true;
+}
+```
+
+### `onFullscreenPlayerWillPresent`
+
+
+
+Callback function that is called when the player is about to enter fullscreen mode.
+
+Payload: none
+
+### `onFullscreenPlayerDidPresent`
+
+
+
+Callback function that is called when the player has entered fullscreen mode.
+
+Payload: none
+
+### `onFullscreenPlayerWillDismiss`
+
+
+
+Callback function that is called when the player is about to exit fullscreen mode.
+
+Payload: none
+
+### `onFullscreenPlayerDidDismiss`
+
+
+
+Callback function that is called when the player has exited fullscreen mode.
+
+Payload: none
+
+### `onLoad`
+
+
+
+Callback function that is called when the media is loaded and ready to play.
+
+Payload:
+
+| Property | Type | Description |
+| ----------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| currentTime | number | Time in seconds where the media will start |
+| duration | number | Length of the media in seconds |
+| naturalSize | object | Properties: _ width - Width in pixels that the video was encoded at _ height - Height in pixels that the video was encoded at \* orientation - "portrait" or "landscape" |
+| audioTracks | array | An array of audio track info objects with the following properties: _ index - Index number _ title - Description of the track _ language - 2 letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) or 3 letter [ISO639-2](https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes) language code _ type - Mime type of track |
+| textTracks | array | An array of text track info objects with the following properties: _ index - Index number _ title - Description of the track _ language - 2 letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) or 3 letter [ISO 639-2](https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes) language code _ type - Mime type of track |
+| videoTracks | array | An array of video track info objects with the following properties: _ trackId - ID for the track _ bitrate - Bit rate in bits per second _ codecs - Comma separated list of codecs _ height - Height of the video \* width - Width of the video |
+
+Example:
+
+```javascript
+{
+ canPlaySlowForward: true,
+ canPlayReverse: false,
+ canPlaySlowReverse: false,
+ canPlayFastForward: false,
+ canStepForward: false,
+ canStepBackward: false,
+ currentTime: 0,
+ duration: 5910.208984375,
+ naturalSize: {
+ height: 1080
+ orientation: 'landscape'
+ width: '1920'
+ },
+ audioTracks: [
+ { language: 'es', title: 'Spanish', type: 'audio/mpeg', index: 0 },
+ { language: 'en', title: 'English', type: 'audio/mpeg', index: 1 }
+ ],
+ textTracks: [
+ { title: '#1 French', language: 'fr', index: 0, type: 'text/vtt' },
+ { title: '#2 English CC', language: 'en', index: 1, type: 'text/vtt' },
+ { title: '#3 English Director Commentary', language: 'en', index: 2, type: 'text/vtt' }
+ ],
+ videoTracks: [
+ { bitrate: 3987904, codecs: "avc1.640028", height: 720, trackId: "f1-v1-x3", width: 1280 },
+ { bitrate: 7981888, codecs: "avc1.640028", height: 1080, trackId: "f2-v1-x3", width: 1920 },
+ { bitrate: 1994979, codecs: "avc1.4d401f", height: 480, trackId: "f3-v1-x3", width: 848 }
+ ]
+}
+```
+
+### `onLoadStart`
+
+
+
+Callback function that is called when the media starts loading.
+
+Payload:
+
+| Property | Description |
+| --------- | ----------- | ---------------------------------------------------------------- |
+| isNetwork | boolean | Boolean indicating if the media is being loaded from the network |
+| type | string | Type of the media. Not available on Windows |
+| uri | string | URI for the media source. Not available on Windows |
+
+Example:
+
+```javascript
+{
+ isNetwork: true,
+ type: '',
+ uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8'
+}
+```
+
+### `onPlaybackStateChanged`
+
+
+
+Callback function that is called when the playback state changes.
+
+Payload:
+
+| Property | Description |
+| --------- | ----------- | ------------------------------------------------- |
+| isPlaying | boolean | Boolean indicating if the media is playing or not |
+
+Example:
+
+```javascript
+{
+ isPlaying: true,
+}
+```
+
+### `onPictureInPictureStatusChanged`
+
+
+
+Callback function that is called when picture in picture becomes active or inactive.
+
+| Property | Type | Description |
+| -------- | ------- | ------------------------------------------------------- |
+| isActive | boolean | Boolean indicating whether picture in picture is active |
+
+Example:
+
+```javascript
+{
+ isActive: true;
+}
+```
+
+### `onPlaybackRateChange`
+
+
+
+Callback function that is called when the rate of playback changes - either paused or starts/resumes.
+
+| Property | Type | Description |
+| ------------ | ------ | --------------------------------------------------------------------------------------------------------------- |
+| playbackRate | number | 0 when playback is paused, 1 when playing at normal speed. Other values when playback is slowed down or sped up |
+
+Example:
+
+```javascript
+{
+ playbackRate: 0, // indicates paused
+}
+```
+
+### `onProgress`
+
+
+
+Callback function that is called every progressUpdateInterval milliseconds with info about which position the media is currently playing.
+
+| Property | Type | Description |
+| ---------------- | ------ | ------------------------------------------------------------------------------------------------- |
+| currentTime | number | Current position in seconds |
+| playableDuration | number | Position to where the media can be played to using just the buffer in seconds |
+| seekableDuration | number | Position to where the media can be seeked to in seconds. Typically, the total length of the media |
+
+Example:
+
+```javascript
+{
+ currentTime: 5.2,
+ playableDuration: 34.6,
+ seekableDuration: 888
+}
+```
+
+### `onReadyForDisplay`
+
+
+
+Callback function that is called when the first video frame is ready for display. This is when the poster is removed.
+
+Payload: none
+
+- iOS: [readyForDisplay](https://developer.apple.com/documentation/avkit/avplayerviewcontroller/1615830-readyfordisplay?language=objc)
+- Android [STATE_READY](https://exoplayer.dev/doc/reference/com/google/android/exoplayer2/Player.html#STATE_READY)
+
+### `onReceiveAdEvent`
+
+
+
+Callback function that is called when an AdEvent is received from the IMA's SDK.
+
+Enum `AdEvent` possible values for [Android](https://developers.google.com/interactive-media-ads/docs/sdks/html5/client-side/reference/js/google.ima.AdEvent) and [iOS](https://developers.google.com/interactive-media-ads/docs/sdks/ios/client-side/reference/Enums/IMAAdEventType):
+
+
+Events
+
+| Event | Platform | Description |
+| -------------------------- | ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `AD_BREAK_ENDED` | iOS | Fired the first time each ad break ends. Applications must reenable seeking when this occurs (only used for dynamic ad insertion). |
+| `AD_BREAK_READY` | Android, iOS | Fires when an ad rule or a VMAP ad break would have played if autoPlayAdBreaks is false. |
+| `AD_BREAK_STARTED` | iOS | Fired first time each ad break begins playback. If an ad break is watched subsequent times this will not be fired. Applications must disable seeking when this occurs (only used for dynamic ad insertion). |
+| `AD_BUFFERING` | Android | Fires when the ad has stalled playback to buffer. |
+| `AD_CAN_PLAY` | Android | Fires when the ad is ready to play without buffering, either at the beginning of the ad or after buffering completes. |
+| `AD_METADATA` | Android | Fires when an ads list is loaded. |
+| `AD_PERIOD_ENDED` | iOS | Fired every time the stream switches from advertising or slate to content. This will be fired even when an ad is played a second time or when seeking into an ad (only used for dynamic ad insertion). |
+| `AD_PERIOD_STARTED` | iOS | Fired every time the stream switches from content to advertising or slate. This will be fired even when an ad is played a second time or when seeking into an ad (only used for dynamic ad insertion). |
+| `AD_PROGRESS` | Android | Fires when the ad's current time value changes. The event `data` will be populated with an AdProgressData object. |
+| `ALL_ADS_COMPLETED` | Android, iOS | Fires when the ads manager is done playing all the valid ads in the ads response, or when the response doesn't return any valid ads. |
+| `CLICK` | Android, iOS | Fires when the ad is clicked. |
+| `COMPLETED` | Android, iOS | Fires when the ad completes playing. |
+| `CONTENT_PAUSE_REQUESTED` | Android | Fires when content should be paused. This usually happens right before an ad is about to cover the content. |
+| `CONTENT_RESUME_REQUESTED` | Android | Fires when content should be resumed. This usually happens when an ad finishes or collapses. |
+| `CUEPOINTS_CHANGED` | iOS | Cuepoints changed for VOD stream (only used for dynamic ad insertion). |
+| `DURATION_CHANGE` | Android | Fires when the ad's duration changes. |
+| `ERROR` | Android, iOS | Fires when an error occurred while loading the ad and prevent it from playing. |
+| `FIRST_QUARTILE` | Android, iOS | Fires when the ad playhead crosses first quartile. |
+| `IMPRESSION` | Android | Fires when the impression URL has been pinged. |
+| `INTERACTION` | Android | Fires when an ad triggers the interaction callback. Ad interactions contain an interaction ID string in the ad data. |
+| `LINEAR_CHANGED` | Android | Fires when the displayed ad changes from linear to nonlinear, or the reverse. |
+| `LOADED` | Android, iOS | Fires when ad data is available. |
+| `LOG` | Android, iOS | Fires when a non-fatal error is encountered. The user need not take any action since the SDK will continue with the same or next ad playback depending on the error situation. |
+| `MIDPOINT` | Android, iOS | Fires when the ad playhead crosses midpoint. |
+| `PAUSED` | Android, iOS | Fires when the ad is paused. |
+| `RESUMED` | Android, iOS | Fires when the ad is resumed. |
+| `SKIPPABLE_STATE_CHANGED` | Android | Fires when the displayed ads skippable state is changed. |
+| `SKIPPED` | Android, iOS | Fires when the ad is skipped by the user. |
+| `STARTED` | Android, iOS | Fires when the ad starts playing. |
+| `STREAM_LOADED` | iOS | Stream request has loaded (only used for dynamic ad insertion). |
+| `TAPPED` | iOS | Fires when the ad is tapped. |
+| `THIRD_QUARTILE` | Android, iOS | Fires when the ad playhead crosses third quartile. |
+| `UNKNOWN` | iOS | An unknown event has fired |
+| `USER_CLOSE` | Android | Fires when the ad is closed by the user. |
+| `VIDEO_CLICKED` | Android | Fires when the non-clickthrough portion of a video ad is clicked. |
+| `VIDEO_ICON_CLICKED` | Android | Fires when a user clicks a video icon. |
+| `VOLUME_CHANGED` | Android | Fires when the ad volume has changed. |
+| `VOLUME_MUTED` | Android | Fires when the ad volume has been muted. |
+
+
+
+Payload:
+
+| Property | Type | Description |
+| -------- | ----------------------------------------- | --------------------- |
+| event | AdEvent | The ad event received |
+| data | Record<string, string> \| undefined | The ad event data |
+
+Example:
+
+```json
+{
+ "data": {
+ "key": "value"
+ },
+ "event": "LOG"
+}
+```
+
+### `onRestoreUserInterfaceForPictureInPictureStop`
+
+
+
+Callback function that corresponds to Apple's [`restoreUserInterfaceForPictureInPictureStopWithCompletionHandler`](https://developer.apple.com/documentation/avkit/avpictureinpicturecontrollerdelegate/1614703-pictureinpicturecontroller?language=objc). Call `restoreUserInterfaceForPictureInPictureStopCompleted` inside of this function when done restoring the user interface.
+
+Payload: none
+
+### `onSeek`
+
+
+
+Callback function that is called when a seek completes.
+
+Payload:
+
+| Property | Type | Description |
+| ----------- | ------ | ------------------------------- |
+| currentTime | number | The current time after the seek |
+| seekTime | number | The requested time |
+
+Example:
+
+```javascript
+{
+ currentTime: 100.5;
+ seekTime: 100;
+}
+```
+
+Both the currentTime & seekTime are reported because the video player may not seek to the exact requested position in order to improve seek performance.
+
+### `onTimedMetadata`
+
+
+
+Callback function that is called when timed metadata becomes available
+
+Payload:
+
+| Property | Type | Description |
+| -------- | ----- | ------------------------- |
+| metadata | array | Array of metadata objects |
+
+Example:
+
+```javascript
+{
+ metadata: [
+ {value: 'Streaming Encoder', identifier: 'TRSN'},
+ {value: 'Internet Stream', identifier: 'TRSO'},
+ {value: 'Any Time You Like', identifier: 'TIT2'},
+ ];
+}
+```
+
+### `onTextTracks`
+
+
+
+Callback function that is called when text tracks change
+
+Payload:
+
+| Property | Type | Description |
+| -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| index | number | Internal track ID |
+| title | string | Descriptive name for the track |
+| language | string | 2 letter [ISO 639-1 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) representing the language |
+| type | string | Mime type of the track _ TextTrackType.SRT - SubRip (.srt) _ TextTrackType.TTML - TTML (.ttml) \* TextTrackType.VTT - WebVTT (.vtt) iOS only supports VTT, Android supports all 3 |
+| selected | boolean | true if track is playing |
+
+Example:
+
+```javascript
+{
+ textTracks: [
+ {
+ index: 0,
+ title: 'Any Time You Like',
+ type: 'srt',
+ selected: true,
+ },
+ ];
+}
+```
+
+### `onTextTrackDataChanged`
+
+
+
+Callback function that is called when new subtitle data is available. It provides the actual subtitle content for the current selected text track, if available (mainly WebVTT).
+
+Payload:
+
+| Property | Type | Description |
+| ---------------- | -------- | -------------------------------------------------- |
+| `subtitleTracks` | `string` | The subtitles text content in a compatible format. |
+
+Example:
+
+```javascript
+{
+ subtitleTracks: "This blade has a dark past.",
+}
+```
+
+### `onVideoTracks`
+
+
+
+Callback function that is called when video tracks change
+
+Payload:
+
+| Property | Type | Description |
+| -------- | ------- | ------------------------------------- |
+| trackId | number | Internal track ID |
+| codecs | string | MimeType of codec used for this track |
+| width | number | Track width |
+| height | number | Track height |
+| bitrate | number | Bitrate in bps |
+| selected | boolean | true if track is selected for playing |
+
+Example:
+
+```javascript
+{
+ videoTracks: [
+ {
+ trackId: 0,
+ codecs: 'video/mp4',
+ width: 1920,
+ height: 1080,
+ bitrate: 10000,
+ selected: true,
+ },
+ ];
+}
+```
+
+### `onVolumeChange`
+
+
+
+Callback function that is called when the volume of player changes.
+
+> Note: This event applies to the volume of the player, not the volume of the device.
+
+Payload:
+
+| Property | Type | Description |
+| -------- | ------ | ------------------------------------------ |
+| volume | number | The volume of the player (between 0 and 1) |
+
+Example:
+
+```javascript
+{
+ volume: 0.5;
+}
+```
diff --git a/docs/pages/component/methods.md b/docs/pages/component/methods.mdx
similarity index 58%
rename from docs/pages/component/methods.md
rename to docs/pages/component/methods.mdx
index 6d5aedc3..aea3179e 100644
--- a/docs/pages/component/methods.md
+++ b/docs/pages/component/methods.mdx
@@ -1,26 +1,21 @@
+import PlatformsList from './PlatformsList/PlatformsList.tsx';
+
# Methods
+
This page shows the list of available methods
-## Component methods
-
-| Name |Platforms Support |
-|-------------------------------------------------------------------------------------------|-----------------------|
-|[dismissFullscreenPlayer](#dismissfullscreenplayer) |Android, iOS |
-|[presentFullscreenPlayer](#presentfullscreenplayer) |Android, iOS |
-|[pause](#pause) |Android, iOS |
-|[resume](#resume) |Android, iOS |
-|[save](#save) |iOS |
-|[restoreUserInterfaceForPictureInPictureStop](#restoreuserinterfaceforpictureinpicturestop)|iOS |
-|[seek](#seek) |All |
-
### `dismissFullscreenPlayer`
+
+
+
`dismissFullscreenPlayer(): Promise`
Take the player out of fullscreen mode.
-Platforms: Android, iOS
-
### `presentFullscreenPlayer`
+
+
+
`presentFullscreenPlayer(): Promise`
Put the player in fullscreen mode.
@@ -29,82 +24,81 @@ On iOS, this displays the video in a fullscreen view controller with controls.
On Android, this puts the navigation controls in fullscreen mode. It is not a complete fullscreen implementation, so you will still need to apply a style that makes the width and height match your screen dimensions to get a fullscreen video.
-Platforms: Android, iOS
-
### `pause`
+
+
+
`pause(): Promise`
Pause the video.
-
-Platforms: Android, iOS
-
### `resume`
+
+
+
`resume(): Promise`
Resume the video.
-
-Platforms: Android, iOS
-
### `save`
+
+
+
`save(): Promise<{ uri: string }>`
Save video to your Photos with current filter prop. Returns promise.
-
Notes:
- - Currently only supports highest quality export
- - Currently only supports MP4 export
- - Currently only supports exporting to user's cache directory with a generated UUID filename.
- - User will need to remove the saved video through their Photos app
- - Works with cached videos as well. (Checkout video-caching example)
- - If the video is has not began buffering (e.g. there is no internet connection) then the save function will throw an error.
- - If the video is buffering then the save function promise will return after the video has finished buffering and processing.
-Future:
- - Will support multiple qualities through options
- - Will support more formats in the future through options
- - Will support custom directory and file name through options
+- Currently only supports highest quality export
+- Currently only supports MP4 export
+- Currently only supports exporting to user's cache directory with a generated UUID filename.
+- User will need to remove the saved video through their Photos app
+- Works with cached videos as well. (Checkout video-caching example)
+- If the video is has not began buffering (e.g. there is no internet connection) then the save function will throw an error.
+- If the video is buffering then the save function promise will return after the video has finished buffering and processing.
-Platforms: iOS
+Future:
+
+- Will support multiple qualities through options
+- Will support more formats in the future through options
+- Will support custom directory and file name through options
### `restoreUserInterfaceForPictureInPictureStopCompleted`
+
+
+
`restoreUserInterfaceForPictureInPictureStopCompleted(restored)`
-This function corresponds to the completion handler in Apple's [restoreUserInterfaceForPictureInPictureStop](https://developer.apple.com/documentation/avkit/avpictureinpicturecontrollerdelegate/1614703-pictureinpicturecontroller?language=objc). IMPORTANT: This function must be called after `onRestoreUserInterfaceForPictureInPictureStop` is called.
-
-
-Platforms: iOS
+This function corresponds to the completion handler in Apple's [restoreUserInterfaceForPictureInPictureStop](https://developer.apple.com/documentation/avkit/avpictureinpicturecontrollerdelegate/1614703-pictureinpicturecontroller?language=objc). IMPORTANT: This function must be called after `onRestoreUserInterfaceForPictureInPictureStop` is called.
### `seek`
+
+
+
`seek(seconds)`
Seek to the specified position represented by seconds. seconds is a float value.
`seek()` can only be called after the `onLoad` event has fired. Once completed, the [onSeek](#onseek) event will be called.
-
-Platforms: all
-
#### Exact seek
+
+
By default iOS seeks within 100 milliseconds of the target position. If you need more accuracy, you can use the seek with tolerance method:
`seek(seconds, tolerance)`
tolerance is the max distance in milliseconds from the seconds position that's allowed. Using a more exact tolerance can cause seeks to take longer. If you want to seek exactly, set tolerance to 0.
-Platforms: iOS
-
-
-
### Example Usage
+
```tsx
const videoRef = useRef(null);
const someCoolFunctions = async () => {
- if(!videoRef.current) {
+ if (!videoRef.current) {
return;
}
@@ -129,7 +123,7 @@ const someCoolFunctions = async () => {
return (
);
```
@@ -137,34 +131,41 @@ return (
## Static methods
### `getWidevineLevel`
+
+
+
Indicates whether the widevine level supported by device.
Possible values are:
- - 0 - unable to determine widevine support (typically not supported)
- - 1, 2, 3 - Widevine level supported
-Platform: Android
+- 0 - unable to determine widevine support (typically not supported)
+- 1, 2, 3 - Widevine level supported
### `isCodecSupported`
+
Indicates whether the provided codec is supported level supported by device.
parameters:
+
- `mimetype`: mime type of codec to query
- `width`, `height`: resolution to query
Possible results:
+
- `hardware` - codec is supported by hardware
- `software` - codec is supported by software only
- `unsupported` - codec is not supported
-Platform: Android
+
### `isHEVCSupported`
-Helper which Indicates whether the provided HEVC/1920*1080 is supported level supported by device. It uses isCodecSupported internally.
-Platform: Android
+Helper which Indicates whether the provided HEVC/1920\*1080 is supported level supported by device. It uses isCodecSupported internally.
+
+
### Example Usage
+
```tsx
import { VideoDecoderProperties } from 'react-native-video';
@@ -179,4 +180,4 @@ VideoDecoderProperties.isCodecSupported('video/hevc', 1920, 1080).then((support)
VideoDecoderProperties.isHEVCSupported().then((support) => {
...
});
-```
\ No newline at end of file
+```
diff --git a/docs/pages/component/props.md b/docs/pages/component/props.mdx
similarity index 52%
rename from docs/pages/component/props.md
rename to docs/pages/component/props.mdx
index 6ad99bae..30711560 100644
--- a/docs/pages/component/props.md
+++ b/docs/pages/component/props.mdx
@@ -1,127 +1,89 @@
+import PlatformsList from './PlatformsList/PlatformsList.tsx';
+
# Configurable props
+
This page shows the list of available properties to configure player
-## List
-
-| Name | Platforms Support |
-|-------------------------------------------------------------------------------------|---------------------------|
-| [adTagUrl](#adtagurl) | Android, iOS |
-| [allowsExternalPlayback](#allowsexternalplayback) | iOS |
-| [audioOnly](#audioonly) | All |
-| [audioOutput](#audioOutput) | Android, iOS, visionOS |
-| [automaticallyWaitsToMinimizeStalling](#automaticallywaitstominimizestalling) | iOS, visionOS |
-| [backBufferDurationMs](#backbufferdurationms) | Android |
-| [bufferConfig](#bufferconfig) | Android |
-| [contentStartTime](#contentstarttime) | Android |
-| [controls](#controls) | Android, iOS, visionOS |
-| [currentPlaybackTime](#currentplaybacktime) | Android |
-| [debug](#debug) | Android |
-| [disableFocus](#disablefocus) | Android |
-| [disableDisconnectError](#disabledisconnecterror) | Android |
-| [filter](#filter) | iOS, visionOS |
-| [filterEnabled](#filterenabled) | iOS, visionOS |
-| [focusable](#focusable) | Android |
-| [fullscreen](#fullscreen) | Android, iOS |
-| [fullscreenAutorotate](#fullscreenautorotate) | iOS, visionOS |
-| [fullscreenOrientation](#fullscreenorientation) | iOS, visionOS |
-| [headers](#headers) | Android |
-| [hideShutterView](#hideshutterview) | Android |
-| [ignoreSilentSwitch](#ignoresilentswitch) | iOS, visionOS |
-| [maxBitRate](#maxbitrate) | Android, iOS, visionOS |
-| [minLoadRetryCount](#minloadretrycount) | Android |
-| [mixWithOthers](#mixwithothers) | iOS, visionOS |
-| [muted](#muted) | All |
-| [paused](#paused) | All |
-| [pictureInPicture](#pictureinpicture) | iOS |
-| [playInBackground](#playinbackground) | Android, iOS, visionOS |
-| [playWhenInactive](#playwheninactive) | iOS, visionOS |
-| [poster](#poster) | All |
-| [posterResizeMode](#posterresizemode) | All |
-| [preferredForwardBufferDuration](#preferredforwardbufferduration) | iOS, visionOS |
-| [preventsDisplaySleepDuringVideoPlayback](#preventsdisplaysleepduringvideoplayback) | iOS, Android |
-| [progressUpdateInterval](#progressupdateinterval) | All |
-| [rate](#rate) | All |
-| [repeat](#repeat) | All |
-| [reportBandwidth](#reportbandwidth) | Android |
-| [resizeMode](#resizemode) | All |
-| [selectedAudioTrack](#selectedaudiotrack) | Android, iOS, visionOS |
-| [selectedTextTrack](#selectedtexttrack) | Android, iOS visionOS |
-| [selectedVideoTrack](#selectedvideotrack) | Android |
-| [shutterColor](#shuttercolor) | Android |
-| [source](#source) | All |
-| [subtitleStyle](#subtitlestyle) | Android |
-| [textTracks](#texttracks) | Android, iOS, visionOS |
-| [trackId](#trackid) | Android |
-| [useTextureView](#usetextureview) | Android |
-| [useSecureView](#usesecureview) | Android |
-| [volume](#volume) | All |
-| [localSourceEncryptionKeyScheme](#localsourceencryptionkeyscheme) | All |
-
## Details
+
### `adTagUrl`
+
+
+
Sets the VAST uri to play AVOD ads.
Example:
+
```
adTagUrl="https://pubads.g.doubleclick.net/gampad/ads?iu=/21775744923/external/vmap_ad_samples&sz=640x480&cust_params=sample_ar%3Dpremidpostoptimizedpodbumper&ciu_szs=300x250&gdfp_req=1&ad_rule=1&output=vmap&unviewed_position_start=1&env=vp&impl=s&cmsid=496&vid=short_onecue&correlator="
```
Note: You need enable IMA SDK in gradle or pod file - [enable client side ads insertion](/installation)
-
-Platforms: Android, iOS
-
### `allowsExternalPlayback`
-Indicates whether the player allows switching to external playback mode such as AirPlay or HDMI.
-* **true (default)** - allow switching to external playback mode
-* **false** - Don't allow switching to external playback mode
-Platforms: iOS
+
+
+Indicates whether the player allows switching to external playback mode such as AirPlay or HDMI.
+
+- **true (default)** - allow switching to external playback mode
+- **false** - Don't allow switching to external playback mode
### `audioOnly`
+
+
+
Indicates whether the player should only play the audio track and instead of displaying the video track, show the poster instead.
-* **false (default)** - Display the video as normal
-* **true** - Show the poster and play the audio
+
+- **false (default)** - Display the video as normal
+- **true** - Show the poster and play the audio
For this to work, the poster prop must be set.
-Platforms: all
-
### `audioOutput`
-Changes the audio output.
-* **speaker (default)** - plays through speaker
-* **earpiece** - plays through earpiece
-Platforms: Android, iOS, visionOS
+
+
+Changes the audio output.
+
+- **speaker (default)** - plays through speaker
+- **earpiece** - plays through earpiece
### `automaticallyWaitsToMinimizeStalling`
-A Boolean value that indicates whether the player should automatically delay playback in order to minimize stalling. For clients linked against iOS 10.0 and later
-* **false** - Immediately starts playback
-* **true (default)** - Delays playback in order to minimize stalling
-Platforms: iOS, visionOS
+
+
+A Boolean value that indicates whether the player should automatically delay playback in order to minimize stalling. For clients linked against iOS 10.0 and later
+
+- **false** - Immediately starts playback
+- **true (default)** - Delays playback in order to minimize stalling
### `backBufferDurationMs`
+
+
+
The number of milliseconds of buffer to keep before the current position. This allows rewinding without rebuffering within that duration.
-Platforms: Android
-
### `bufferConfig`
+
+
+
Adjust the buffer settings. This prop takes an object with one or more of the properties listed below.
-Property | Type | Description
---- | --- | ---
-minBufferMs | number | The default minimum duration of media that the player will attempt to ensure is buffered at all times, in milliseconds.
-maxBufferMs | number | The default maximum duration of media that the player will attempt to buffer, in milliseconds.
-bufferForPlaybackMs | number | The default duration of media that must be buffered for playback to start or resume following a user action such as a seek, in milliseconds.
-bufferForPlaybackAfterRebufferMs | number | The default duration of media that must be buffered for playback to resume after a rebuffer, in milliseconds. A rebuffer is defined to be caused by buffer depletion rather than a user action.
-maxHeapAllocationPercent | number | The percentage of available heap that the video can use to buffer, between 0 and 1
-minBackBufferMemoryReservePercent | number | The percentage of available app memory at which during startup the back buffer will be disabled, between 0 and 1
-minBufferMemoryReservePercent | number | The percentage of available app memory to keep in reserve that prevents buffer from using it, between 0 and 1
+| Property | Type | Description |
+| --------------------------------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| minBufferMs | number | The default minimum duration of media that the player will attempt to ensure is buffered at all times, in milliseconds. |
+| maxBufferMs | number | The default maximum duration of media that the player will attempt to buffer, in milliseconds. |
+| bufferForPlaybackMs | number | The default duration of media that must be buffered for playback to start or resume following a user action such as a seek, in milliseconds. |
+| bufferForPlaybackAfterRebufferMs | number | The default duration of media that must be buffered for playback to resume after a rebuffer, in milliseconds. A rebuffer is defined to be caused by buffer depletion rather than a user action. |
+| maxHeapAllocationPercent | number | The percentage of available heap that the video can use to buffer, between 0 and 1 |
+| minBackBufferMemoryReservePercent | number | The percentage of available app memory at which during startup the back buffer will be disabled, between 0 and 1 |
+| minBufferMemoryReservePercent | number | The percentage of available app memory to keep in reserve that prevents buffer from using it, between 0 and 1 |
This prop should only be set when you are setting the source, changing it after the media is loaded will cause it to be reloaded.
Example with default values:
+
```javascript
bufferConfig={{
minBufferMs: 15000,
@@ -131,157 +93,177 @@ bufferConfig={{
}}
```
-Platforms: Android
-
### `chapters`
+
+
+
To provide a custom chapter source for tvOS. This prop takes an array of objects with the properties listed below.
| Property | Type | Description |
-|-----------|---------|-----------------------------------------------------------------------------------------------------------------------------------------------------------|
+| --------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
| title | string | The title of the chapter to create |
| startTime | number | The start time of the chapter in seconds |
| endTime | number | The end time of the chapter in seconds |
| uri | string? | Optional: Provide an http orl or the some base64 string to override the image of the chapter. For some media files the images are generated automatically |
-
-Platforms: tvOS
-
### `currentPlaybackTime`
+
+
+
When playing an HLS live stream with a `EXT-X-PROGRAM-DATE-TIME` tag configured, then this property will contain the epoch value in msec.
-Platforms: Android, iOS
-
### `controls`
+
+
+
Determines whether to show player controls.
-* **false (default)** - Don't show player controls
-* **true** - Show player controls
+
+- **false (default)** - Don't show player controls
+- **true** - Show player controls
Note on iOS, controls are always shown when in fullscreen mode.
Note on Android, native controls are available by default.
If needed, you can also add your controls or use a package like [react-native-video-controls](https://github.com/itsnubix/react-native-video-controls) or [react-native-media-console](https://github.com/criszz77/react-native-media-console), see [Useful Side Project](/projects).
-Platforms: Android, iOS, visionOS
-
### `contentStartTime`
+
+
+
The start time in ms for SSAI content. This determines at what time to load the video info like resolutions. Use this only when you have SSAI stream where ads resolution is not the same as content resolution.
-Platforms: Android
-
### `debug`
+
+
Enable more verbosity in logs.
> [!WARNING]
> Do not use this open in production build
-| Property | Type | Description |
-| ------------------ | ------ | ------------------------------------------------------------------------------------------- |
-| `enable` | boolean | when true, display logs with verbosity higher |
-| `thread` | boolean | enable thread display |
-
+| Property | Type | Description |
+| -------- | ------- | --------------------------------------------- |
+| `enable` | boolean | when true, display logs with verbosity higher |
+| `thread` | boolean | enable thread display |
Example with default values:
+
```javascript
debug={{
enable: true,
thread: true,
}}
```
-Platforms: Android
-
### `disableFocus`
+
+
+
Determines whether video audio should override background music/audio in Android devices.
-* **false (default)** - Override background audio/music
-* **true** - Let background audio/music from other apps play
-
+
+- **false (default)** - Override background audio/music
+- **true** - Let background audio/music from other apps play
+
Note: Allows multiple videos to play if set to `true`. If `false`, when one video is playing and another is started, the first video will be paused.
-
-Platforms: Android
### `disableDisconnectError`
-Determines if the player needs to throw an error when connection is lost or not
-* **false (default)** - Player will throw an error when connection is lost
-* **true** - Player will keep trying to buffer when network connect is lost
-Platforms: Android
+
+
+Determines if the player needs to throw an error when connection is lost or not
+
+- **false (default)** - Player will throw an error when connection is lost
+- **true** - Player will keep trying to buffer when network connect is lost
### `DRM`
+
+
+
To setup DRM please follow [this guide](/component/drm)
-Platforms: Android, iOS
> ⚠️ DRM is not supported on visionOS yet
### `filter`
+
+
+
Add video filter
-* **FilterType.NONE (default)** - No Filter
-* **FilterType.INVERT** - CIColorInvert
-* **FilterType.MONOCHROME** - CIColorMonochrome
-* **FilterType.POSTERIZE** - CIColorPosterize
-* **FilterType.FALSE** - CIFalseColor
-* **FilterType.MAXIMUMCOMPONENT** - CIMaximumComponent
-* **FilterType.MINIMUMCOMPONENT** - CIMinimumComponent
-* **FilterType.CHROME** - CIPhotoEffectChrome
-* **FilterType.FADE** - CIPhotoEffectFade
-* **FilterType.INSTANT** - CIPhotoEffectInstant
-* **FilterType.MONO** - CIPhotoEffectMono
-* **FilterType.NOIR** - CIPhotoEffectNoir
-* **FilterType.PROCESS** - CIPhotoEffectProcess
-* **FilterType.TONAL** - CIPhotoEffectTonal
-* **FilterType.TRANSFER** - CIPhotoEffectTransfer
-* **FilterType.SEPIA** - CISepiaTone
+
+- **FilterType.NONE (default)** - No Filter
+- **FilterType.INVERT** - CIColorInvert
+- **FilterType.MONOCHROME** - CIColorMonochrome
+- **FilterType.POSTERIZE** - CIColorPosterize
+- **FilterType.FALSE** - CIFalseColor
+- **FilterType.MAXIMUMCOMPONENT** - CIMaximumComponent
+- **FilterType.MINIMUMCOMPONENT** - CIMinimumComponent
+- **FilterType.CHROME** - CIPhotoEffectChrome
+- **FilterType.FADE** - CIPhotoEffectFade
+- **FilterType.INSTANT** - CIPhotoEffectInstant
+- **FilterType.MONO** - CIPhotoEffectMono
+- **FilterType.NOIR** - CIPhotoEffectNoir
+- **FilterType.PROCESS** - CIPhotoEffectProcess
+- **FilterType.TONAL** - CIPhotoEffectTonal
+- **FilterType.TRANSFER** - CIPhotoEffectTransfer
+- **FilterType.SEPIA** - CISepiaTone
For more details on these filters refer to the [iOS docs](https://developer.apple.com/library/archive/documentation/GraphicsImaging/Reference/CoreImageFilterReference/index.html#//apple_ref/doc/uid/TP30000136-SW55).
-Notes:
+Notes:
+
1. Using a filter can impact CPU usage. A workaround is to save the video with the filter and then load the saved video.
2. Video filter is currently not supported on HLS playlists.
3. `filterEnabled` must be set to `true`
-Platforms: iOS, visionOS
-
### `filterEnabled`
-Enable video filter.
-* **false (default)** - Don't enable filter
-* **true** - Enable filter
+
-Platforms: iOS, visionOS
+Enable video filter.
+
+- **false (default)** - Don't enable filter
+- **true** - Enable filter
### `Focusable`
-Whether this video view should be focusable with a non-touch input device, eg. receive focus with a hardware keyboard.
-* **false** - Makes view unfocusable
-* **true (default)** - Makes view focusable
-
-Platforms: Android
+
+
+Whether this video view should be focusable with a non-touch input device, eg. receive focus with a hardware keyboard.
+
+- **false** - Makes view unfocusable
+- **true (default)** - Makes view focusable
### `fullscreen`
+
+
+
Controls whether the player enters fullscreen on play.
See [presentFullscreenPlayer](#presentfullscreenplayer) for details.
-* **false (default)** - Don't display the video in fullscreen
-* **true** - Display the video in fullscreen
-
-Platforms: iOS, Android, visionOS
+- **false (default)** - Don't display the video in fullscreen
+- **true** - Display the video in fullscreen
### `fullscreenAutorotate`
-If a preferred [fullscreenOrientation](#fullscreenorientation) is set, causes the video to rotate to that orientation but permits rotation of the screen to orientation held by user. Defaults to TRUE.
-Platforms: iOS, visionOS
+
+
+If a preferred [fullscreenOrientation](#fullscreenorientation) is set, causes the video to rotate to that orientation but permits rotation of the screen to orientation held by user. Defaults to TRUE.
### `fullscreenOrientation`
-* **all (default)** -
-* **landscape**
-* **portrait**
+
-Platforms: iOS, visionOS
+- **all (default)** -
+- **landscape**
+- **portrait**
### `headers`
-Pass headers to the HTTP client. Can be used for authorization. Headers must be a part of the source object.
+
+
+
+Pass headers to the HTTP client. Can be used for authorization. Headers must be a
+part of the source object.
Example:
+
```javascript
source={{
uri: "https://www.example.com/video.mp4",
@@ -292,166 +274,198 @@ source={{
}}
```
-Platforms: Android
-
### `hideShutterView`
+
+
+
Controls whether the ExoPlayer shutter view (black screen while loading) is enabled.
-* **false (default)** - Show shutter view
-* **true** - Hide shutter view
-
-Platforms: Android
+- **false (default)** - Show shutter view
+- **true** - Hide shutter view
### `ignoreSilentSwitch`
-Controls the iOS silent switch behavior
-* **"inherit" (default)** - Use the default AVPlayer behavior
-* **"ignore"** - Play audio even if the silent switch is set
-* **"obey"** - Don't play audio if the silent switch is set
-Platforms: iOS, visionOS
+
+
+Controls the iOS silent switch behavior
+
+- **"inherit" (default)** - Use the default AVPlayer behavior
+- **"ignore"** - Play audio even if the silent switch is set
+- **"obey"** - Don't play audio if the silent switch is set
### `maxBitRate`
+
+
+
Sets the desired limit, in bits per second, of network bandwidth consumption when multiple video streams are available for a playlist.
Default: 0. Don't limit the maxBitRate.
Example:
+
```javascript
maxBitRate={2000000} // 2 megabits
```
-Platforms: Android, iOS, visionOS
-
### `minLoadRetryCount`
+
+
+
Sets the minimum number of times to retry loading data before failing and reporting an error to the application. Useful to recover from transient internet failures.
Default: 3. Retry 3 times.
Example:
+
```javascript
minLoadRetryCount={5} // retry 5 times
```
-Platforms: Android
-
### `mixWithOthers`
-Controls how Audio mix with other apps.
-* **"inherit" (default)** - Use the default AVPlayer behavior
-* **"mix"** - Audio from this video mixes with audio from other apps.
-* **"duck"** - Reduces the volume of other apps while audio from this video plays.
-Platforms: iOS, visionOS
+
+
+Controls how Audio mix with other apps.
+
+- **"inherit" (default)** - Use the default AVPlayer behavior
+- **"mix"** - Audio from this video mixes with audio from other apps.
+- **"duck"** - Reduces the volume of other apps while audio from this video plays.
### `muted`
-Controls whether the audio is muted
-* **false (default)** - Don't mute audio
-* **true** - Mute audio
-Platforms: all
+
+
+Controls whether the audio is muted
+
+- **false (default)** - Don't mute audio
+- **true** - Mute audio
### `paused`
-Controls whether the media is paused
-* **false (default)** - Don't pause the media
-* **true** - Pause the media
-Platforms: all
+
+
+Controls whether the media is paused
+
+- **false (default)** - Don't pause the media
+- **true** - Pause the media
### `pictureInPicture`
+
+
+
Determine whether the media should played as picture in picture.
-* **false (default)** - Don't not play as picture in picture
-* **true** - Play the media as picture in picture
-NOTE: Video ads cannot start when you are using the PIP on iOS (more info available at [Google IMA SDK Docs](https://developers.google.com/interactive-media-ads/docs/sdks/ios/client-side/picture_in_picture?hl=en#starting_ads)). If you are using custom controls, you must hide your PIP button when you receive the ```STARTED``` event from ```onReceiveAdEvent``` and show it again when you receive the ```ALL_ADS_COMPLETED``` event.
+- **false (default)** - Don't not play as picture in picture
+- **true** - Play the media as picture in picture
-Platforms: iOS
+NOTE: Video ads cannot start when you are using the PIP on iOS (more info available at [Google IMA SDK Docs](https://developers.google.com/interactive-media-ads/docs/sdks/ios/client-side/picture_in_picture?hl=en#starting_ads)). If you are using custom controls, you must hide your PIP button when you receive the `STARTED` event from `onReceiveAdEvent` and show it again when you receive the `ALL_ADS_COMPLETED` event.
### `playInBackground`
+
+
+
Determine whether the media should continue playing while the app is in the background. This allows customers to continue listening to the audio.
-* **false (default)** - Don't continue playing the media
-* **true** - Continue playing the media
+
+- **false (default)** - Don't continue playing the media
+- **true** - Continue playing the media
To use this feature on iOS, you must:
-* [Enable Background Audio](https://developer.apple.com/library/archive/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/AudioSessionBasics/AudioSessionBasics.html#//apple_ref/doc/uid/TP40007875-CH3-SW3) in your Xcode project
-* Set the ignoreSilentSwitch prop to "ignore"
-Platforms: Android, iOS, visionOS
+- [Enable Background Audio](https://developer.apple.com/library/archive/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/AudioSessionBasics/AudioSessionBasics.html#//apple_ref/doc/uid/TP40007875-CH3-SW3) in your Xcode project
+- Set the ignoreSilentSwitch prop to "ignore"
### `playWhenInactive`
-Determine whether the media should continue playing when notifications or the Control Center are in front of the video.
-* **false (default)** - Don't continue playing the media
-* **true** - Continue playing the media
-Platforms: iOS, visionOS
+
+
+Determine whether the media should continue playing when notifications or the Control Center are in front of the video.
+
+- **false (default)** - Don't continue playing the media
+- **true** - Continue playing the media
### `poster`
-An image to display while the video is loading
- Value: string with a URL for the poster, e.g. "https://baconmockup.com/300/200/"
-Platforms: all
+
+
+An image to display while the video is loading
+
+Value: string with a URL for the poster, e.g. "https://baconmockup.com/300/200/"
### `posterResizeMode`
-Determines how to resize the poster image when the frame doesn't match the raw video dimensions.
-* **"contain" (default)** - Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or less than the corresponding dimension of the view (minus padding).
-* **"center"** - Center the image in the view along both dimensions. If the image is larger than the view, scale it down uniformly so that it is contained in the view.
-* **"cover"** - Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding).
-* **"none"** - Don't apply resize
-* **"repeat"** - Repeat the image to cover the frame of the view. The image will keep its size and aspect ratio. (iOS only)
-* **"stretch"** - Scale width and height independently, This may change the aspect ratio of the src.
-Platforms: all
+
+
+Determines how to resize the poster image when the frame doesn't match the raw video dimensions.
+
+- **"contain" (default)** - Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or less than the corresponding dimension of the view (minus padding).
+- **"center"** - Center the image in the view along both dimensions. If the image is larger than the view, scale it down uniformly so that it is contained in the view.
+- **"cover"** - Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding).
+- **"none"** - Don't apply resize
+- **"repeat"** - Repeat the image to cover the frame of the view. The image will keep its size and aspect ratio. (iOS only)
+- **"stretch"** - Scale width and height independently, This may change the aspect ratio of the src.
### `preferredForwardBufferDuration`
+
+
+
The duration the player should buffer media from the network ahead of the playhead to guard against playback disruption. Sets the [preferredForwardBufferDuration](https://developer.apple.com/documentation/avfoundation/avplayeritem/1643630-preferredforwardbufferduration) instance property on AVPlayerItem.
Default: 0
-Platforms: iOS, visionOS
-
### `preventsDisplaySleepDuringVideoPlayback`
+
+
+
Controls whether or not the display should be allowed to sleep while playing the video. Default is not to allow display to sleep.
Default: true
-Platforms: iOS, Android
-
### `progressUpdateInterval`
+
+
+
Delay in milliseconds between onProgress events in milliseconds.
Default: 250.0
-Platforms: all
-
### `rate`
-Speed at which the media should play.
-* **0.0** - Pauses the video
-* **1.0** - Play at normal speed
-* **Other values** - Slow down or speed up playback
-Platforms: all
+
+
+Speed at which the media should play.
+
+- **0.0** - Pauses the video
+- **1.0** - Play at normal speed
+- **Other values** - Slow down or speed up playback
### `repeat`
+
+
+
Determine whether to repeat the video when the end is reached
-* **false (default)** - Don't repeat the video
-* **true** - Repeat the video
-
-Platforms: all
+- **false (default)** - Don't repeat the video
+- **true** - Repeat the video
### `onAudioTracks`
+
+
+
Callback function that is called when audio tracks change
Payload:
-Property | Type | Description
---- | --- | ---
-index | number | Internal track ID
-title | string | Descriptive name for the track
-language | string | 2 letter [ISO 639-1 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) representing the language
-bitrate | number | bitrate of track
-type | string | Mime type of track
-selected | boolean | true if track is playing
+| Property | Type | Description |
+| -------- | ------- | ---------------------------------------------------------------------------------------------------------- |
+| index | number | Internal track ID |
+| title | string | Descriptive name for the track |
+| language | string | 2 letter [ISO 639-1 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) representing the language |
+| bitrate | number | bitrate of track |
+| type | string | Mime type of track |
+| selected | boolean | true if track is playing |
Example:
+
```javascript
{
audioTracks: [
@@ -461,27 +475,30 @@ Example:
}
```
-
-Platforms: Android
-
### `reportBandwidth`
+
+
+
Determine whether to generate onBandwidthUpdate events. This is needed due to the high frequency of these events on ExoPlayer.
-* **false (default)** - Don't generate onBandwidthUpdate events
-* **true** - Generate onBandwidthUpdate events
-
-Platforms: Android
+- **false (default)** - Don't generate onBandwidthUpdate events
+- **true** - Generate onBandwidthUpdate events
### `resizeMode`
-Determines how to resize the video when the frame doesn't match the raw video dimensions.
-* **"none" (default)** - Don't apply resize
-* **"contain"** - Scale the video uniformly (maintain the video's aspect ratio) so that both dimensions (width and height) of the video will be equal to or less than the corresponding dimension of the view (minus padding).
-* **"cover"** - Scale the video uniformly (maintain the video's aspect ratio) so that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding).
-* **"stretch"** - Scale width and height independently, This may change the aspect ratio of the src.
-Platforms: Android, iOS, Windows UWP
+
+
+Determines how to resize the video when the frame doesn't match the raw video dimensions.
+
+- **"none" (default)** - Don't apply resize
+- **"contain"** - Scale the video uniformly (maintain the video's aspect ratio) so that both dimensions (width and height) of the video will be equal to or less than the corresponding dimension of the view (minus padding).
+- **"cover"** - Scale the video uniformly (maintain the video's aspect ratio) so that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding).
+- **"stretch"** - Scale width and height independently, This may change the aspect ratio of the src.
### `selectedAudioTrack`
+
+
+
Configure which audio track, if any, is played.
```javascript
@@ -492,6 +509,7 @@ selectedAudioTrack={{
```
Example:
+
```javascript
selectedAudioTrack={{
type: "title",
@@ -499,19 +517,20 @@ selectedAudioTrack={{
}}
```
-Type | Value | Description
---- | --- | ---
-"system" (default) | N/A | Play the audio track that matches the system language. If none match, play the first track.
-"disabled" | N/A | Turn off audio
-"title" | string | Play the audio track with the title specified as the Value, e.g. "French"
-"language" | string | Play the audio track with the language specified as the Value, e.g. "fr"
-"index" | number | Play the audio track with the index specified as the value, e.g. 0
+| Type | Value | Description |
+| ------------------ | ------ | ------------------------------------------------------------------------------------------- |
+| "system" (default) | N/A | Play the audio track that matches the system language. If none match, play the first track. |
+| "disabled" | N/A | Turn off audio |
+| "title" | string | Play the audio track with the title specified as the Value, e.g. "French" |
+| "language" | string | Play the audio track with the language specified as the Value, e.g. "fr" |
+| "index" | number | Play the audio track with the index specified as the value, e.g. 0 |
If a track matching the specified Type (and Value if appropriate) is unavailable, the first audio track will be played. If multiple tracks match the criteria, the first match will be used.
-Platforms: Android, iOS, visionOS
-
### `selectedTextTrack`
+
+
+
Configure which text track (caption or subtitle), if any, is shown.
```javascript
@@ -522,6 +541,7 @@ selectedTextTrack={{
```
Example:
+
```javascript
selectedTextTrack={{
type: "title",
@@ -529,21 +549,22 @@ selectedTextTrack={{
}}
```
-Type | Value | Description
---- | --- | ---
-"system" (default) | N/A | Display captions only if the system preference for captions is enabled
-"disabled" | N/A | Don't display a text track
-"title" | string | Display the text track with the title specified as the Value, e.g. "French 1"
-"language" | string | Display the text track with the language specified as the Value, e.g. "fr"
-"index" | number | Display the text track with the index specified as the value, e.g. 0
+| Type | Value | Description |
+| ------------------ | ------ | ----------------------------------------------------------------------------- |
+| "system" (default) | N/A | Display captions only if the system preference for captions is enabled |
+| "disabled" | N/A | Don't display a text track |
+| "title" | string | Display the text track with the title specified as the Value, e.g. "French 1" |
+| "language" | string | Display the text track with the language specified as the Value, e.g. "fr" |
+| "index" | number | Display the text track with the index specified as the value, e.g. 0 |
-Both iOS & Android (only 4.4 and higher) offer Settings to enable Captions for hearing impaired people. If "system" is selected and the Captions Setting is enabled, iOS/Android will look for a caption that matches that customer's language and display it.
+Both iOS & Android (only 4.4 and higher) offer Settings to enable Captions for hearing impaired people. If "system" is selected and the Captions Setting is enabled, iOS/Android will look for a caption that matches that customer's language and display it.
If a track matching the specified Type (and Value if appropriate) is unavailable, no text track will be displayed. If multiple tracks match the criteria, the first match will be used.
-Platforms: Android, iOS, visionOS
-
### `selectedVideoTrack`
+
+
+
Configure which video track should be played. By default, the player uses Adaptive Bitrate Streaming to automatically select the stream it thinks will perform best based on available bandwidth.
```javascript
@@ -554,6 +575,7 @@ selectedVideoTrack={{
```
Example:
+
```javascript
selectedVideoTrack={{
type: "resolution",
@@ -561,29 +583,29 @@ selectedVideoTrack={{
}}
```
-Type | Value | Description
---- | --- | ---
-"auto" (default) | N/A | Let the player determine which track to play using ABR
-"disabled" | N/A | Turn off video
-"resolution" | number | Play the video track with the height specified, e.g. 480 for the 480p stream
-"index" | number | Play the video track with the index specified as the value, e.g. 0
+| Type | Value | Description |
+| ---------------- | ------ | ---------------------------------------------------------------------------- |
+| "auto" (default) | N/A | Let the player determine which track to play using ABR |
+| "disabled" | N/A | Turn off video |
+| "resolution" | number | Play the video track with the height specified, e.g. 480 for the 480p stream |
+| "index" | number | Play the video track with the index specified as the value, e.g. 0 |
If a track matching the specified Type (and Value if appropriate) is unavailable, ABR will be used.
-Platforms: Android
-
### `shutterColor`
-Apply color to shutter view, if you see black flashes before video start then set
+
+
+
+Apply color to shutter view, if you see black flashes before video start then set
```javascript
-shutterColor='transparent'
+shutterColor = 'transparent';
```
- black (default)
-Platforms: Android
-
### `source`
+
Sets the media source. You can pass an asset loaded via require or an object with a uri.
Setting the source will trigger the player to attempt to load the provided media with all other given props. Please be sure that all props are provided before/at the same time as setting the source.
@@ -594,16 +616,16 @@ Providing a null source value after loading a previous source will stop playback
The docs for this prop are incomplete and will be updated as each option is investigated and tested.
-
#### Asset loaded via require
> ⚠️ on iOS, you file name must not contain spaces eg. `my video.mp4` will not work, use `my-video.mp4` instead
-Example:
+Example:
+
```javascript
const sintel = require('./sintel.mp4');
-source={sintel}
+source = {sintel};
```
#### URI string
@@ -615,43 +637,47 @@ For exemple 'www.myurl.com/blabla?q=test uri' is invalid, where 'www.myurl.com/b
##### Web address (http://, https://)
+
+
Example:
+
```javascript
source={{uri: 'https://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_10mb.mp4' }}
```
-Platforms: all
-
##### File path (file://)
+
+
Example:
+
```javascript
source={{ uri: 'file:///sdcard/Movies/sintel.mp4' }}
```
Note: Your app will need to request permission to read external storage if you're accessing a file outside your app.
-Platforms: Android, possibly others
-
##### iPod Library (ipod-library://)
+
+
Path to a sound file in your iTunes library. Typically shared from iTunes to your app.
Example:
+
```javascript
source={{ uri: 'ipod-library:///path/to/music.mp3' }}
```
Note: Using this feature adding an entry for NSAppleMusicUsageDescription to your Info.plist file as described [here](https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html)
-Platforms: iOS
-
##### Explicit mimetype for the stream
Provide a member `type` with value (`mpd`/`m3u8`/`ism`) inside the source object.
Sometimes is needed when URL extension does not match with the mimetype that you are expecting, as seen on the next example. (Extension is .ism -smooth streaming- but file served is on format mpd -mpeg dash-)
Example:
+
```javascript
source={{ uri: 'http://host-serving-a-type-different-than-the-extension.ism/manifest(format=mpd-time-csf)',
type: 'mpd' }}
@@ -664,16 +690,19 @@ The following other types are supported on some platforms, but aren't fully docu
#### Start playback at a specific point in time
+
+
Provide an optional `startPosition` for video. Value is in milliseconds. If the `cropStart` prop is applied, it will be applied from that point forward.
(If it is negative or undefined or null, it is ignored)
-Platforms: Android, iOS
-
#### Playing only a portion of the video (start & end time)
+
+
Provide an optional `cropStart` and/or `cropEnd` for the video. Value is in milliseconds. Useful when you want to play only a portion of a large video.
Example
+
```javascript
source={{ uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8', cropStart: 36012, cropEnd: 48500 }}
@@ -682,37 +711,34 @@ source={{ uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8'
source={{ uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8', cropEnd: 48500 }}
```
-Platforms: iOS, Android
-
#### Overriding the metadata of a source
-Provide an optional `title`, `subtitle`, `customImageUri` and/or `description` properties for the video.
+
+
+Provide an optional `title`, `subtitle`, `customImageUri` and/or `description` properties for the video.
Useful when to adapt the tvOS playback experience.
Example:
```javascript
-source={{
- uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8',
- title: 'Custom Title',
- subtitle: 'Custom Subtitle',
+source={{
+ uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8',
+ title: 'Custom Title',
+ subtitle: 'Custom Subtitle',
description: 'Custom Description',
customImageUri: 'https://pbs.twimg.com/profile_images/1498641868397191170/6qW2XkuI_400x400.png'
}}
```
-Platforms: tvOS
-
### `subtitleStyle`
-Property | Description | Platforms
---- | --- | ---
-fontSize | Adjust the font size of the subtitles. Default: font size of the device | Android
-paddingTop | Adjust the top padding of the subtitles. Default: 0| Android
-paddingBottom | Adjust the bottom padding of the subtitles. Default: 0| Android
-paddingLeft | Adjust the left padding of the subtitles. Default: 0| Android
-paddingRight | Adjust the right padding of the subtitles. Default: 0| Android
-
+| Property | Description | Platforms |
+| ------------- | ----------------------------------------------------------------------- | --------- |
+| fontSize | Adjust the font size of the subtitles. Default: font size of the device | Android |
+| paddingTop | Adjust the top padding of the subtitles. Default: 0 | Android |
+| paddingBottom | Adjust the bottom padding of the subtitles. Default: 0 | Android |
+| paddingLeft | Adjust the left padding of the subtitles. Default: 0 | Android |
+| paddingRight | Adjust the right padding of the subtitles. Default: 0 | Android |
Example:
@@ -721,21 +747,26 @@ subtitleStyle={{ paddingBottom: 50, fontSize: 20 }}
```
### `textTracks`
+
+
+
Load one or more "sidecar" text tracks. This takes an array of objects representing each track. Each object should have the format:
+
> ⚠️ This feature does not work with HLS playlists (e.g m3u8) on iOS
-Property | Description
---- | ---
-title | Descriptive name for the track
-language | 2 letter [ISO 639-1 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) representing the language
-type | Mime type of the track * TextTrackType.SRT - SubRip (.srt) * TextTrackType.TTML - TTML (.ttml) * TextTrackType.VTT - WebVTT (.vtt) iOS only supports VTT, Android supports all 3
-uri | URL for the text track. Currently, only tracks hosted on a webserver are supported
+| Property | Description |
+| -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| title | Descriptive name for the track |
+| language | 2 letter [ISO 639-1 code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) representing the language |
+| type | Mime type of the track _ TextTrackType.SRT - SubRip (.srt) _ TextTrackType.TTML - TTML (.ttml) \* TextTrackType.VTT - WebVTT (.vtt)iOS only supports VTT, Android supports all 3 |
+| uri | URL for the text track. Currently, only tracks hosted on a webserver are supported |
On iOS, sidecar text tracks are only supported for individual files, not HLS playlists. For HLS, you should include the text tracks as part of the playlist.
Note: Due to iOS limitations, sidecar text tracks are not compatible with Airplay. If textTracks are specified, AirPlay support will be automatically disabled.
Example:
+
```javascript
import { TextTrackType }, Video from 'react-native-video';
@@ -755,56 +786,61 @@ textTracks={[
]}
```
-
-Platforms: Android, iOS, visionOS
-
### `trackId`
+
+
+
Configure an identifier for the video stream to link the playback context to the events emitted.
-Platforms: Android
-
### `useTextureView`
+
+
+
Controls whether to output to a TextureView or SurfaceView.
SurfaceView is more efficient and provides better performance but has two limitations:
-* It can't be animated, transformed or scaled
-* You can't overlay multiple SurfaceViews
+
+- It can't be animated, transformed or scaled
+- You can't overlay multiple SurfaceViews
useTextureView can only be set at same time you're setting the source.
-* **true (default)** - Use a TextureView
-* **false** - Use a SurfaceView
-
-Platforms: Android
+- **true (default)** - Use a TextureView
+- **false** - Use a SurfaceView
### `useSecureView`
+
+
+
Force the output to a SurfaceView and enables the secure surface.
This will override useTextureView flag.
SurfaceView is is the only one that can be labeled as secure.
-* **true** - Use security
-* **false (default)** - Do not use security
-
-Platforms: Android
+- **true** - Use security
+- **false (default)** - Do not use security
### `volume`
-Adjust the volume.
-* **1.0 (default)** - Play at full volume
-* **0.0** - Mute the audio
-* **Other values** - Reduce volume
-Platforms: all
+
+
+Adjust the volume.
+
+- **1.0 (default)** - Play at full volume
+- **0.0** - Mute the audio
+- **Other values** - Reduce volume
### `localSourceEncryptionKeyScheme`
+
+
+
Set the url scheme for stream encryption key for local assets
Type: String
Example:
+
```
localSourceEncryptionKeyScheme="my-offline-key"
```
-
-Platforms: iOS
\ No newline at end of file
diff --git a/docs/theme.config.jsx b/docs/theme.config.jsx
index ad2a8917..7985f0e8 100644
--- a/docs/theme.config.jsx
+++ b/docs/theme.config.jsx
@@ -26,6 +26,12 @@ export default {
content="https://react-native-video.github.io/react-native-video/thumbnail.jpg"
/>
+
+
+
>
),
logo: (
diff --git a/docs/tsconfig.json b/docs/tsconfig.json
new file mode 100644
index 00000000..65348e83
--- /dev/null
+++ b/docs/tsconfig.json
@@ -0,0 +1,28 @@
+{
+ "compilerOptions": {
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": false,
+ "noEmit": true,
+ "incremental": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve"
+ },
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx"
+ ],
+ "exclude": [
+ "node_modules"
+ ]
+}