Go to file
2024-10-21 15:20:23 +02:00
.github chore: rework examples (#4225) 2024-10-20 20:04:02 +02:00
android fix: remove warning and refactor & fix ad workflow (#4235) 2024-10-17 21:56:06 +02:00
docs chore: rework examples (#4225) 2024-10-20 20:04:02 +02:00
examples chore: update examples README 2024-10-20 20:31:30 +02:00
ios Chore: rework ad props (#4220) 2024-10-10 23:53:39 +02:00
scripts chore: enhance CI tests (#3344) 2023-12-02 15:58:43 +01:00
src
windows Merge branch 'master' into sdkVersion 2023-09-19 09:09:13 +02:00
.eslintignore
.eslintrc
.gitignore
.nvmrc feat: added .nvmrc 2023-07-19 16:21:12 +09:00
.prettierrc
.release-it.json
app.plugin.js
CHANGELOG.md chore: release v6.7.0 2024-10-17 21:58:53 +02:00
CONTRIBUTING.md chore: update repository links (#3742) 2024-05-07 17:25:09 +02:00
LICENSE Update copyright 2022-06-22 06:35:04 +00:00
package.json
react-native-video.podspec
README.md chore: update README 2024-10-21 15:20:23 +02:00
tsconfig.build.json
tsconfig.json

react-native-video

🎬 <Video> component for React Native

Documentation

documentation is available at thewidlarzgroup.github.io/react-native-video/

Examples

We have examples that will show you basic usage of react-native-video here.
Examples shows basic usage and DRM example.

Usage

// Load the module

import Video, {VideoRef} from 'react-native-video';

// 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.

const VideoPlayer = () => {
 const videoRef = useRef<VideoRef>(null);
 const background = require('./background.mp4');

 return (
   <Video 
    // Can be a URL or a local file.
    source={background}
    // Store reference  
    ref={videoRef}
    // Callback when remote video is buffering                                      
    onBuffer={onBuffer}
    // Callback when video cannot be loaded              
    onError={onError}               
    style={styles.backgroundVideo}
   />
 )
}

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

Community support

We have an discord server where you can ask questions and get help. Join the discord server

Enterprise Support

📱 react-native-video is provided as it is. For enterprise support or other business inquiries, please contact us 🤝. We can help you with the integration, customization and maintenance. We are providing both free and commercial support for this project. let's build something awesome together! 🚀

TheWidlarzGroup