Go to file
2016-04-12 14:13:50 -04:00
android Merge pull request #126 from jpgarcia/master 2016-02-02 15:50:51 -08:00
Examples/VideoPlayer examples working on android/ios again 2016-02-10 11:39:54 +00:00
RCTVideo.xcodeproj Minor fixes 2016-04-01 11:13:01 +02:00
.eslintrc Example fix, test script, and some refactoring 2016-01-31 20:13:48 -08:00
.gitignore [git] Ignore .gradle/ 2015-12-08 02:45:37 -08:00
LICENSE Add license 2016-03-24 19:43:09 -07:00
package.json Add new RCTVideoPlayerViewControllerDelegate protocol 2016-04-01 10:51:02 +02:00
RCTVideo.h Implement delegate in RCTVideo 2016-04-01 10:52:05 +02:00
RCTVideo.m Merge pull request #181 from sjchmiela/feature/support_fullscreen_mode 2016-04-12 14:13:50 -04:00
RCTVideoManager.h Initial commit 2015-03-30 22:07:55 -07:00
RCTVideoManager.m Add option for listening to fullscreen player events 2016-03-31 21:35:10 +02:00
RCTVideoPlayerViewController.h Minor fixes 2016-04-01 11:13:01 +02:00
RCTVideoPlayerViewController.m Use the delegate in controller 2016-04-01 10:51:31 +02:00
RCTVideoPlayerViewControllerDelegate.h Add new RCTVideoPlayerViewControllerDelegate protocol 2016-04-01 10:51:02 +02:00
react-native-video.podspec add podspec 2016-02-17 09:56:09 -08:00
README.md Update README to explain where android assets go 2016-04-12 13:49:10 -04:00
UIView+FindUIViewController.h Move View Controller retrieval to external UIView category 2016-03-31 20:51:22 +02:00
UIView+FindUIViewController.m Move View Controller retrieval to external UIView category 2016-03-31 20:51:22 +02:00
Video.js Use API instead of prop to show and hide fullscreen player 2016-04-01 11:12:50 +02:00
VideoResizeMode.js Example fix, test script, and some refactoring 2016-01-31 20:13:48 -08:00

react-native-video

A

Requires react-native >= 0.19.0

Add it to your project

Run npm install react-native-video --save

iOS

  1. Open your project in XCode, right click on Libraries and click Add Files to "Your Project Name"
    • Screenshot Screenshot (use the RCTVideo project rather than the one pictured in screenshot).
  2. Add libRTCVideo.a to Build Phases -> Link Binary With Libraries (Screenshot).
  3. Add .mp4 video file to project and to Build Phases -> Copy Bundle Resources
  4. Whenever you want to use it within React code now you can: var Video = require('react-native-video').default; or just import Video from 'react-native-video'.

Android

First, copy your video file to android/app/src/main/res/raw/

Then make the following additions to the given files.

android/settings.gradle

include ':RCTVideo', ':app'
project(':RCTVideo').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android')

android/app/build.gradle

dependencies {
   ...
   compile project(':RCTVideo')
}

MainActivity.java

On top, where imports are:

import com.brentvatne.react.ReactVideoPackage;

Under .addPackage(new MainReactPackage()):

.addPackage(new ReactVideoPackage())

Usage

// Within your render function, assuming you have a file called
// "background.mp4" in your project. You can include multiple videos
// on a single screen if you like.
<Video source={{uri: "background"}} // Can be a URL or a local file.
       rate={1.0}                   // 0 is paused, 1 is normal.
       volume={1.0}                 // 0 is muted, 1 is normal.
       muted={false}                // Mutes the audio entirely.
       paused={false}               // Pauses playback entirely.
       resizeMode="cover"           // Fill the whole screen at aspect ratio.
       repeat={true}                // Repeat forever.
       onLoadStart={this.loadStart} // Callback when video starts to load
       onLoad={this.setDuration}    // Callback when video loads
       onProgress={this.setTime}    // Callback every ~250ms with currentTime
       onEnd={this.onEnd}           // Callback when playback finishes
       onError={this.videoError}    // Callback when video cannot be loaded
       style={styles.backgroundVideo} />

// Later on in your styles..
var styles = StyleSheet.create({
  backgroundVideo: {
    position: 'absolute',
    top: 0,
    left: 0,
    bottom: 0,
    right: 0,
  },
});

Static Methods

seek(seconds)

Seeks the video to the specified time (in seconds). Access using a ref to the component

Examples

  • See an Example integration in react-native-login *note that this example uses an older version of this library, before we used export default -- if you use require you will need to do require('react-native-video').default as per instructions above.

  • Try the included VideoPlayer example yourself:

    git clone git@github.com:brentvatne/react-native-video.git
    cd react-native-video/Examples/VideoPlayer
    npm install
    open VideoPlayer.xcodeproj
    
    

    Then Cmd+R to start the React Packager, build and run the project in the simulator.

TODOS

  • Add support for captions
  • Add support for playing multiple videos in a sequence (will interfere with current repeat implementation)
  • Callback to get buffering progress for remote videos
  • Bring API closer to HTML5 <Video> reference

MIT Licensed