2024-03-08 05:04:27 -07:00
import PlatformsList from '../../components/PlatformsList/PlatformsList.tsx';
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
# Configurable props
2024-03-08 04:48:01 -07:00
This page shows the list of available properties to configure player
2023-10-26 00:54:14 -06:00
## Details
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
### `adTagUrl`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS']} />
2023-10-26 00:54:14 -06:00
Sets the VAST uri to play AVOD ads.
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```
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="
```
2024-01-28 12:03:07 -07:00
Note: You need enable IMA SDK in gradle or pod file - [enable client side ads insertion](/installation)
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
### `allowsExternalPlayback`
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS']} />
2023-10-26 00:54:14 -06:00
Indicates whether the player allows switching to external playback mode such as AirPlay or HDMI.
2024-03-08 04:48:01 -07:00
- **true (default)** - allow switching to external playback mode
- **false** - Don't allow switching to external playback mode
2023-10-26 00:54:14 -06:00
### `audioOnly`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
Indicates whether the player should only play the audio track and instead of displaying the video track, show the poster instead.
2024-03-08 04:48:01 -07:00
- **false (default)** - Display the video as normal
- **true** - Show the poster and play the audio
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
For this to work, the poster prop must be set.
2023-10-26 00:54:14 -06:00
### `audioOutput`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Changes the audio output.
2024-03-08 04:48:01 -07:00
- **speaker (default)** - plays through speaker
- **earpiece** - plays through earpiece
2023-10-26 00:54:14 -06:00
### `automaticallyWaitsToMinimizeStalling`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
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
2024-03-08 04:48:01 -07:00
- **false** - Immediately starts playback
- **true (default)** - Delays playback in order to minimize stalling
2023-10-26 00:54:14 -06:00
### `bufferConfig`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Adjust the buffer settings. This prop takes an object with one or more of the properties listed below.
2024-03-08 04:48:01 -07:00
| 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. |
2024-03-28 14:33:17 -06:00
| backBufferDurationMs | number | The number of milliseconds of buffer to keep before the current position. This allows rewinding without rebuffering within that duration. |
2024-03-08 04:48:01 -07:00
| 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 |
2023-10-26 00:54:14 -06:00
Example with default values:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
bufferConfig={{
minBufferMs: 15000,
maxBufferMs: 50000,
bufferForPlaybackMs: 2500,
2024-03-28 14:33:17 -06:00
bufferForPlaybackAfterRebufferMs: 5000,
backBufferDurationMs: 120000,
2023-10-26 00:54:14 -06:00
}}
```
### `chapters`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['tvOS']} />
2023-10-26 00:54:14 -06:00
To provide a custom chapter source for tvOS. This prop takes an array of objects with the properties listed below.
| Property | Type | Description |
2024-03-08 04:48:01 -07:00
| --------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
2023-10-26 00:54:14 -06:00
| 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 |
2024-03-08 04:48:01 -07:00
### `currentPlaybackTime`
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS']} />
2023-10-26 00:54:14 -06:00
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.
### `controls`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Determines whether to show player controls.
2024-03-08 04:48:01 -07:00
- **false (default)** - Don't show player controls
- **true** - Show player controls
2023-10-26 00:54:14 -06:00
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).
### `contentStartTime`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
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.
2023-10-26 00:54:14 -06:00
### `debug`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Enable more verbosity in logs.
> [!WARNING]
> Do not use this open in production build
2024-03-08 04:48:01 -07:00
| Property | Type | Description |
| -------- | ------- | --------------------------------------------- |
| `enable` | boolean | when true, display logs with verbosity higher |
| `thread` | boolean | enable thread display |
2023-10-26 00:54:14 -06:00
Example with default values:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
debug={{
enable: true,
thread: true,
}}
```
### `disableFocus`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Determines whether video audio should override background music/audio in Android devices.
2024-03-08 04:48:01 -07:00
- **false (default)** - Override background audio/music
- **true** - Let background audio/music from other apps play
2023-10-26 00:54:14 -06:00
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.
### `disableDisconnectError`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Determines if the player needs to throw an error when connection is lost or not
2024-03-08 04:48:01 -07:00
- **false (default)** - Player will throw an error when connection is lost
- **true** - Player will keep trying to buffer when network connect is lost
2023-10-26 00:54:14 -06:00
### `DRM`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS']} />
2023-10-26 00:54:14 -06:00
To setup DRM please follow [this guide](/component/drm)
2024-01-15 23:21:38 -07:00
> ⚠️ DRM is not supported on visionOS yet
2023-10-26 00:54:14 -06:00
### `filter`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Add video filter
2024-03-08 04:48:01 -07:00
- **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
2023-10-26 00:54:14 -06:00
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).
2024-03-08 04:48:01 -07:00
Notes:
2023-10-26 00:54:14 -06:00
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`
### `filterEnabled`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
Enable video filter.
- **false (default)** - Don't enable filter
- **true** - Enable filter
2023-10-26 00:54:14 -06:00
### `Focusable`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Whether this video view should be focusable with a non-touch input device, eg. receive focus with a hardware keyboard.
2024-03-08 04:48:01 -07:00
- **false** - Makes view unfocusable
- **true (default)** - Makes view focusable
2023-10-26 00:54:14 -06:00
### `fullscreen`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Controls whether the player enters fullscreen on play.
See [presentFullscreenPlayer](#presentfullscreenplayer) for details.
2024-03-08 04:48:01 -07:00
- **false (default)** - Don't display the video in fullscreen
- **true** - Display the video in fullscreen
2023-10-26 00:54:14 -06:00
### `fullscreenAutorotate`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['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.
2023-10-26 00:54:14 -06:00
### `fullscreenOrientation`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
- **all (default)** -
- **landscape**
- **portrait**
2023-10-26 00:54:14 -06:00
### `headers`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
Pass headers to the HTTP client. Can be used for authorization. Headers must be a
part of the source object.
2023-10-26 00:54:14 -06:00
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
source={{
uri: "https://www.example.com/video.mp4",
headers: {
Authorization: 'bearer some-token-value',
'X-Custom-Header': 'some value'
}
}}
```
### `hideShutterView`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
Controls whether the ExoPlayer shutter view (black screen while loading) is enabled.
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
- **false (default)** - Show shutter view
- **true** - Hide shutter view
2023-10-26 00:54:14 -06:00
### `ignoreSilentSwitch`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Controls the iOS silent switch behavior
2024-03-08 04:48:01 -07:00
- **"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
2023-10-26 00:54:14 -06:00
### `maxBitRate`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
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:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
maxBitRate={2000000} // 2 megabits
```
### `minLoadRetryCount`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
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:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
minLoadRetryCount={5} // retry 5 times
```
### `mixWithOthers`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Controls how Audio mix with other apps.
2024-03-08 04:48:01 -07:00
- **"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.
2023-10-26 00:54:14 -06:00
### `muted`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
Controls whether the audio is muted
2024-03-08 04:48:01 -07:00
- **false (default)** - Don't mute audio
- **true** - Mute audio
2023-10-26 00:54:14 -06:00
### `paused`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
Controls whether the media is paused
2024-03-08 04:48:01 -07:00
- **false (default)** - Don't pause the media
- **true** - Pause the media
2023-10-26 00:54:14 -06:00
### `pictureInPicture`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS']} />
2023-10-26 00:54:14 -06:00
Determine whether the media should played as picture in picture.
2024-03-08 04:48:01 -07:00
- **false (default)** - Don't not play as picture in picture
- **true** - Play the media as picture in picture
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
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.
2023-10-26 00:54:14 -06:00
### `playInBackground`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Determine whether the media should continue playing while the app is in the background. This allows customers to continue listening to the audio.
2024-03-08 04:48:01 -07:00
- **false (default)** - Don't continue playing the media
- **true** - Continue playing the media
2023-10-26 00:54:14 -06:00
To use this feature on iOS, you must:
2024-03-08 04:48:01 -07:00
- [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"
2023-10-26 00:54:14 -06:00
### `playWhenInactive`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Determine whether the media should continue playing when notifications or the Control Center are in front of the video.
2024-03-08 04:48:01 -07:00
- **false (default)** - Don't continue playing the media
- **true** - Continue playing the media
2023-10-26 00:54:14 -06:00
### `poster`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
An image to display while the video is loading
2024-03-08 04:48:01 -07:00
Value: string with a URL for the poster, e.g. "https://baconmockup.com/300/200/"
2023-10-26 00:54:14 -06:00
### `posterResizeMode`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
Determines how to resize the poster image when the frame doesn't match the raw video dimensions.
2024-03-08 04:48:01 -07:00
- **"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.
2023-10-26 00:54:14 -06:00
### `preferredForwardBufferDuration`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
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
### `preventsDisplaySleepDuringVideoPlayback`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS', 'Android']} />
2023-10-26 00:54:14 -06:00
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
### `progressUpdateInterval`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
Delay in milliseconds between onProgress events in milliseconds.
Default: 250.0
### `rate`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
Speed at which the media should play.
2024-03-21 08:40:25 -06:00
- **0.0** - Pauses the video (iOS only)
- **1.0** - Play at normal speed (default)
2024-03-08 04:48:01 -07:00
- **Other values** - Slow down or speed up playback
2023-10-26 00:54:14 -06:00
### `repeat`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
Determine whether to repeat the video when the end is reached
- **false (default)** - Don't repeat the video
- **true** - Repeat the video
2023-10-26 00:54:14 -06:00
### `onAudioTracks`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Callback function that is called when audio tracks change
Payload:
2024-03-08 04:48:01 -07:00
| 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 |
2023-10-26 00:54:14 -06:00
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
{
audioTracks: [
{ language: 'es', title: 'Spanish', type: 'audio/mpeg', index: 0, selected: true },
{ language: 'en', title: 'English', type: 'audio/mpeg', index: 1 }
],
}
```
2024-03-08 04:48:01 -07:00
### `reportBandwidth`
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Determine whether to generate onBandwidthUpdate events. This is needed due to the high frequency of these events on ExoPlayer.
2024-03-08 04:48:01 -07:00
- **false (default)** - Don't generate onBandwidthUpdate events
- **true** - Generate onBandwidthUpdate events
2023-10-26 00:54:14 -06:00
### `resizeMode`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'Windows UWP']} />
2023-10-26 00:54:14 -06:00
Determines how to resize the video when the frame doesn't match the raw video dimensions.
2024-03-08 04:48:01 -07:00
- **"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.
2023-10-26 00:54:14 -06:00
### `selectedAudioTrack`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Configure which audio track, if any, is played.
```javascript
selectedAudioTrack={{
type: Type,
value: Value
}}
```
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
selectedAudioTrack={{
type: "title",
value: "Dubbing"
}}
```
2024-03-08 04:48:01 -07:00
| 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 |
2023-10-26 00:54:14 -06:00
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.
### `selectedTextTrack`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Configure which text track (caption or subtitle), if any, is shown.
```javascript
selectedTextTrack={{
type: Type,
value: Value
}}
```
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
selectedTextTrack={{
type: "title",
value: "English Subtitles"
}}
```
2024-03-08 04:48:01 -07:00
| 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 |
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
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.
2023-10-26 00:54:14 -06:00
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.
### `selectedVideoTrack`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
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
selectedVideoTrack={{
type: Type,
value: Value
}}
```
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
selectedVideoTrack={{
type: "resolution",
value: 480
}}
```
2024-03-08 04:48:01 -07:00
| 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 |
2023-10-26 00:54:14 -06:00
If a track matching the specified Type (and Value if appropriate) is unavailable, ABR will be used.
### `shutterColor`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
Apply color to shutter view, if you see black flashes before video start then set
2023-10-26 00:54:14 -06:00
```javascript
2024-03-08 04:48:01 -07:00
shutterColor = 'transparent';
2023-10-26 00:54:14 -06:00
```
- black (default)
### `source`
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
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.
Rendering the player component with a null source will init the player, and start playing once a source value is provided.
Providing a null source value after loading a previous source will stop playback, and clear out the previous source content.
The docs for this prop are incomplete and will be updated as each option is investigated and tested.
#### Asset loaded via require
2023-11-17 07:38:32 -07:00
> ⚠️ on iOS, you file name must not contain spaces eg. `my video.mp4` will not work, use `my-video.mp4` instead
2024-03-08 04:48:01 -07:00
Example:
2024-03-13 01:23:11 -06:00
Pass directly the asset to play (deprecated)
2023-10-26 00:54:14 -06:00
```javascript
const sintel = require('./sintel.mp4');
2024-03-13 01:23:11 -06:00
source={ sintel };
```
Or by using an uri (starting from 6.0.0-beta.6)
2023-10-26 00:54:14 -06:00
2024-03-13 01:23:11 -06:00
```javascript
const sintel = require('./sintel.mp4');
source={{ uri: sintel }}
2023-10-26 00:54:14 -06:00
```
2024-03-13 01:23:11 -06:00
2023-10-26 00:54:14 -06:00
#### URI string
A number of URI schemes are supported by passing an object with a `uri` attribute.
2023-12-24 06:38:33 -07:00
All uri string shall be url encoded.
For exemple 'www.myurl.com/blabla?q=test uri' is invalid, where 'www.myurl.com/blabla?q=test%20uri' is valid
2023-10-26 00:54:14 -06:00
##### Web address (http://, https://)
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
source={{uri: 'https://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_10mb.mp4' }}
```
##### File path (file://)
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```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.
##### iPod Library (ipod-library://)
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS']} />
2023-10-26 00:54:14 -06:00
Path to a sound file in your iTunes library. Typically shared from iTunes to your app.
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```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)
##### 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:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
source={{ uri: 'http://host-serving-a-type-different-than-the-extension.ism/manifest(format=mpd-time-csf)',
type: 'mpd' }}
```
##### Other protocols
The following other types are supported on some platforms, but aren't fully documented yet:
`content://, ms-appx://, ms-appdata://, assets-library://`
2023-11-24 04:52:46 -07:00
#### Start playback at a specific point in time
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS']} />
2023-11-24 04:52:46 -07:00
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)
2023-10-26 00:54:14 -06:00
#### Playing only a portion of the video (start & end time)
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS']} />
2023-11-24 04:52:46 -07:00
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.
2023-10-26 00:54:14 -06:00
Example
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
2023-11-24 04:52:46 -07:00
source={{ uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8', cropStart: 36012, cropEnd: 48500 }}
2023-10-26 00:54:14 -06:00
2023-11-24 04:52:46 -07:00
source={{ uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8', cropStart: 36012 }}
2023-10-26 00:54:14 -06:00
2023-11-24 04:52:46 -07:00
source={{ uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8', cropEnd: 48500 }}
2023-10-26 00:54:14 -06:00
```
#### Overriding the metadata of a source
2024-03-08 04:48:01 -07:00
<PlatformsList types={['tvOS']} />
Provide an optional `title`, `subtitle`, `customImageUri` and/or `description` properties for the video.
2023-10-26 00:54:14 -06:00
Useful when to adapt the tvOS playback experience.
Example:
```javascript
2024-03-08 04:48:01 -07:00
source={{
uri: 'https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8',
title: 'Custom Title',
subtitle: 'Custom Subtitle',
2023-10-26 00:54:14 -06:00
description: 'Custom Description',
customImageUri: 'https://pbs.twimg.com/profile_images/1498641868397191170/6qW2XkuI_400x400.png'
}}
```
### `subtitleStyle`
2024-03-08 04:48:01 -07:00
| 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 |
2024-03-14 04:29:50 -06:00
| opacity | Adjust the visibility of subtitles with 0 hiding and 1 fully showing them. Android supports float values between 0 and 1 for varying opacity levels, whereas iOS supports only 0 or 1. Default: 1. | Android, iOS |
2023-10-26 00:54:14 -06:00
Example:
```javascript
2024-03-14 04:29:50 -06:00
subtitleStyle={{ paddingBottom: 50, fontSize: 20, opacity: 0 }}
2023-10-26 00:54:14 -06:00
```
### `textTracks`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android', 'iOS', 'visionOS']} />
2023-10-26 00:54:14 -06:00
Load one or more "sidecar" text tracks. This takes an array of objects representing each track. Each object should have the format:
2024-03-08 04:48:01 -07:00
2023-11-17 00:19:39 -07:00
> ⚠️ This feature does not work with HLS playlists (e.g m3u8) on iOS
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
| 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 |
2023-10-26 00:54:14 -06:00
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:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```javascript
import { TextTrackType }, Video from 'react-native-video';
textTracks={[
{
title: "English CC",
language: "en",
type: TextTrackType.VTT, // "text/vtt"
uri: "https://bitdash-a.akamaihd.net/content/sintel/subtitles/subtitles_en.vtt"
},
{
title: "Spanish Subtitles",
language: "es",
type: TextTrackType.SRT, // "application/x-subrip"
uri: "https://durian.blender.org/wp-content/content/subtitles/sintel_es.srt"
}
]}
```
2024-03-08 04:48:01 -07:00
### `trackId`
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Configure an identifier for the video stream to link the playback context to the events emitted.
### `useTextureView`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
Controls whether to output to a TextureView or SurfaceView.
SurfaceView is more efficient and provides better performance but has two limitations:
2024-03-08 04:48:01 -07:00
- It can't be animated, transformed or scaled
- You can't overlay multiple SurfaceViews
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
useTextureView can only be set at same time you're setting the source.
2023-10-26 00:54:14 -06:00
2024-03-08 04:48:01 -07:00
- **true (default)** - Use a TextureView
- **false** - Use a SurfaceView
2023-10-26 00:54:14 -06:00
### `useSecureView`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['Android']} />
2023-10-26 00:54:14 -06:00
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.
2024-03-08 04:48:01 -07:00
- **true** - Use security
- **false (default)** - Do not use security
2023-10-26 00:54:14 -06:00
### `volume`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['All']} />
2023-10-26 00:54:14 -06:00
Adjust the volume.
2024-03-08 04:48:01 -07:00
- **1.0 (default)** - Play at full volume
- **0.0** - Mute the audio
- **Other values** - Reduce volume
2023-10-26 00:54:14 -06:00
### `localSourceEncryptionKeyScheme`
2024-03-08 04:48:01 -07:00
<PlatformsList types={['iOS']} />
2023-10-26 00:54:14 -06:00
Set the url scheme for stream encryption key for local assets
Type: String
Example:
2024-03-08 04:48:01 -07:00
2023-10-26 00:54:14 -06:00
```
localSourceEncryptionKeyScheme="my-offline-key"
```