A <YouTube />
component for React Native.
Uses Google's official youtube-ios-player-helper for iOS and YouTube Android Player API for Android and exposes much of the API, as declaratively as possible, into React Native.
Having problems with Android? Please read this first
<YouTube
ref={(component) => {
this._youTubePlayer = component;
}}
videoId="KVZ-P-ZI6W4" // The YouTube video ID
playlistId="PLF797E961509B4EB5" // A playlist's ID, overridden by `videoId`
play={true} // control playback of video with true/false
fullscreen={true} // control whether the video should play in fullscreen or inline
loop={true} // control whether the video should loop when ended
onReady={e => this.setState({ isReady: true })}
onChangeState={e => this.setState({ status: e.state })}
onChangeQuality={e => this.setState({ quality: e.quality })}
onError={e => this.setState({ error: e.error })}
onProgress={e => this.setState({ currentTime: e.currentTime, duration: e.duration })}
style={{ alignSelf: 'stretch', height: 300, backgroundColor: 'black', marginVertical: 10 }}
/>
this._youTubePlayer.seekTo(20);
this._youTubePlayer.nextVideo();
this._youTubePlayer.previousVideo();
this._youTubePlayer.playVideoAt(2);
apiKey
(Android): This parameter is required on Android for the YouTube API to work. More Info.videoId
: The YouTube video ID to play. Can be changed while mounted to change the video playing.videoIds
: An array of YouTube video IDs to be played as an interactive playlist. Can be changed while mounted. Overridden at start byvideoId
.playlistId
: A YouTube Playlist's ID to play as an interactive playlist. Can be changed while mounted. Overridden at start byvideoId
andvideoIds
.play
: Controls playback of video withtrue
/false
. Setting it astrue
in the beginning itself makes the video autoplay on loading. Defaultfalse
.loop
: Loops the video. Defaultfalse
.fullscreen
: Controls whether the video should play inline or in fullscreen. Defaultfalse
.controls
: A number parameter to decide on the player's controls scheme. Supported values are0
,1
,2
. Default1
. On iOS the numbers conform to These Parameters. On Android the mapping is0 = CHROMELSEE
,1 = DEFAULT
,2 = MINIMAL
(More Info).showFullscreenButton
: Show or hide Fullscreen button. Defaulttrue
.showinfo
(iOS): Setting the parameter's value to false causes the player to not display information like the video title and uploader before the video starts playing. Defaulttrue
.modestbranding
(iOS): This parameter lets you use a YouTube player that does not show a YouTube logo. Defaultfalse
.origin
(iOS): This string parameter provides an extra security measure for the iFrame API.rel
(iOS): Show related videos at the end of the video. Defaulttrue
.
The iOS implementation of this player uses the official YouTube iFrame under the hood, so most parameters behavior can be further understood here.
onReady
: Called once when the video player is setup.onChangeState
: Sends the current state of the player one.state
. Common values arebuffering
/playing
/paused
and more.onChangeQuality
: Sends the current quality of video playback one.quality
.onError
: Sends any errors before and during video playback one.error
.onChangeFullscreen
: Called when the player enters or exits the fullscreen mode one.isFullscreen
.onProgress
(iOS): Periodically sends any time progress made one.currentTime
ande.duration
.
seekTo(seconds)
: Seeks to a specified time in the video.nextVideo()
: Skip to next video on a playlist (videoIds
orplaylistId
). Whenloop
is true, will skip to the first video from the last. If called on a single video, will restart the video.previousVideo()
: opposite ofnextVideo()
.playVideoAt(index)
: Will start playing the video atindex
(zero-based) position in a playlist (videoIds
orplaylistId
. Not supported forplaylistId
on Android).videosIndex()
: A Promise that returns theindex
(zero-based) number of the video currently played in a playlist (videoIds
orplaylistId
. Not supported forplaylistId
on Android) or an errorMessage string.currentTime()
(Android): A Promise that return thecurrentTime
of the played video (in seconds) or an errorMessage string. Should be used as a replacement foronProgress
on Android.reloadIframe()
(iOS): Specific props (fullscreen
,modestbranding
,showinfo
,rel
,controls
,origin
) can only be set at mounting and initial loading of the underlying WebView that holds the YouTube iFrame (Those are<iframe>
parameters). If you want to changed one of them during the lifecycle of the component you should know the usability cost of loading the WebView again and use this method right after the component was rendered with the updated prop.
This component is confirmed to be working on react-native ~0.37 - ~0.45
- Install the latest version to your
package.json
:
$ npm install react-native-youtube -S
- Link the library to your iOS and Android projects with:
$ react-native link
IMPORTANT! (iOS Only): To link assets/YTPlayerView-iframe-player.html to your project react-native link
is not enough (As of RN ~0.37). You will need to also use the older tool it is based on, rnpm
(This step must be done after react-native link
):
- First, if you don't have it installed, globally install
rnpm
(Version 1.9.0):
$ npm install -g rnpm
- Then at the project's root folder type:
$ rnpm link
(This step can also be done manually by adding ../node_modules/react-native-youtube/assets/YTPlayerView-iframe-player.html
to your Xcode project's root directory)
IMPORTANT! (Android Only): The Android implementation of this component needs to have the official YouTube app installed on the device. Otherwise an error event will trigger with SERVICE_MISSING
.
Open AppDelegate.m and add :
-
#import <AVFoundation/AVFoundation.h>
-
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error: nil];
in your didFinishLaunchingWithOptions method
The Android version of this component is based on the official Java YouTube Android Player API library which have a few built-in limitations and protections that we must mitigate with a few hacks. In some cases the native view that holds the YouTube instance fails to mount correctly inside React-Native's view hierarchy so we initiate an unnoticeable change in its style after the onReady event fires to force a real re-render on the native views hierarchy. Other than that, the native instance has a built-in mechanism to protect it from being covered by other components (what triggers the UNAUTHORIZED_OVERLAY
error) and it's triggered if the native instance only touches another view. For this reason we must margin the native view from its containing view by StyleSheet.hairlineWidth
which means a single pixel width for the specific device. PLAYER_VIEW_TOO_SMALL
error can also be fired due to the same problems.
These specific hacks are sufficiently solving these related problems in the example app in this repo and also in a private app that I develop which uses standard views and the (now deprecated) NavigationExperimental. On a virtual AVD (Nexus 5X) and on a real Nexus 5X, with React-Native 0.37 through 0.45.
How do we solve this?
Different configurations and environments can still persist these problems so we must find better and more general ways of mitigating them. The best thing anybody who encounters these errors can do, before posting an issue, is try to set up and run the example app in this repo and see if the same behavior persist. If it is, then the problem is probably with the development environment and / or hardware. If not, the problem is probably with other libraries or custom components, and the way they are used in conjunction with this component. Try to understand the nature of the limitations of the native component and gather as much information before posting an issue, even then, better add to #161.
The Android version can sometimes disable the players control even when the controls are explicitly set to be shown. There is no explanation to this behavior yet. This bug is managed in #131.
The YouTube API for Android is a singleton. What it means is that unlike the iOS implementation, no two players can be mounted and play a video at the same time. If you have two scenes that happen to live together, or come one after the other (such as when navigating to a new scene), The new <YouTube />
Will take the focus of the singleton and play the video, but after being unmounted, the older mounted <YouTube />
will not be able to take the role back, and will need to be re-mounted.
This repository includes an example project that can be used for trying, developing and testing all functionalities on a dedicated clean app project.
First copy the git repository and install the React-Native project inside example
git clone https://github.com/inProgress-team/react-native-youtube.git
cd react-native-youtube/example
npm install
react-native link
rnpm link
Then build and run with react-native run-ios
/ react-native run-android
or your favorite IDE.
The react-native-youtube
dependency in the example's package.json
points back to the working directory root at file:../
so you can re-install it with npm install react-native-youtube@file:../
(type this inside example
directory) and test your changes on the example app immediately.
- Param Aggarwal ([email protected])
- David Ohayon (@davidohayon669)
- Ownership has been transferred to inProgress-team
MIT License