react-native-easy-ijkplayer
v1.0.0
Published
## Getting started
Downloads
20
Maintainers
Readme
react-native-easy-ijkplayer
Getting started
$ npm install react-native-easy-ijkplayer --save
Mostly automatic installation
$ react-native link react-native-easy-ijkplayer
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-easy-ijkplayer
and addRNEasyIjkplayer.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNEasyIjkplayer.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.easy.ijkplayer.RNEasyIjkplayerPackage;
to the imports at the top of the file - Add
new RNEasyIjkplayerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-easy-ijkplayer' project(':react-native-easy-ijkplayer').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-easy-ijkplayer/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-easy-ijkplayer')
Demo Reposity: https://github.com/itgou/react-native-easy-ijkplayer-demo
Usage
import RNEasyIjkplayer from 'react-native-easy-ijkplayer';
import React, {Component} from 'react'
import {Platform, StyleSheet, Text, View, Dimensions, Button} from 'react-native'
import IJKPlayerView from "react-native-easy-ijkplayer"
const {width, height} = Dimensions.get('window')
export default class App extends Component {
state={
showIndicator:true
}
_play = () => {
this.RNTIJKPlayerRef.play()
}
_pause = () => {
this.RNTIJKPlayerRef.pause()
}
_stop = () => {
this.RNTIJKPlayerRef.stop()
}
_seekTo = () => {
this.RNTIJKPlayerRef.seekTo(60)
}
_getDuration = () => {
this.RNTIJKPlayerRef.getDuration((err, duration) => {
console.log(err)
console.log(duration)
})
}
_getSize = () => {
this.RNTIJKPlayerRef.getSize((err, size) => {
console.log(err)
console.log(size)
})
}
_onPrepared = (event) => {
this.setState({showIndicator:false})
}
_onLoadProgressUpdate = ({nativeEvent: {loadProgress}}) => {
}
_onProgressUpdate = ( progress) => {
console.log('progress',progress)
}
_onInfo = (info) => {
}
_onError = (error) => {
}
_onComplete = () => {
}
render() {
const {showIndicator}= this.state
return (
<>
<IJKPlayerView
ref={(ref) => this.RNTIJKPlayerRef = ref}
options={{
url:"http://img.elleshop.com.cn/media/product/14994134515891.mp4",
autoPlay: 1,
}}
showIndicator={showIndicator}
onComplete={this._onComplete}
onPrepared={this._onPrepared}
onError={this._onError}
onInfo={this._onInfo}
onProgressUpdate={this._onProgressUpdate}
/>
<Button
onPress={this._play}
title={"start"}
/>
<Button
onPress={this._pause}
title={"pause"}
/>
<Button
onPress={this._stop}
title={"stop"}
/>
<Button
onPress={this._seekTo}
title={"seek"}
/>
<Button
onPress={this._getDuration}
title={"get Duration"}
/>
<Button
onPress={this._getSize}
title={"get Size"}
/>
</>
)
}
}