Code Monkey home page Code Monkey logo

react-native-android-piliplayer's Introduction

react-native-android-piliplayer npm version

第一步

工程目录下运行 npm install --save react-native-android-piliplayer 或者 yarn add react-native-android-piliplayer(已经安装了yarn)

第二步

运行 react-native link react-native-android-piliplayer

第三步使用

在工程中导入:

import React, { Component } from 'react';
import {AppRegistry,StyleSheet,Text, View,Dimensions,Button,ToastAndroid,LayoutAnimation,Image} from 'react-native';
import Player from 'react-native-piliplayer';
let {width,height}=Dimensions.get('window')
export default class player extends Component {
  constructor(){
    super();
    this.state={
        paused:false,
    }
  }
  showToast(text){
      ToastAndroid.show(text,ToastAndroid.SHORT)
  }
  render() {
    return (
      <View style={styles.container}>
        <Player
            paused={this.state.paused}
            ref={ref=>this.player=ref}
            source={{uri:'uri',liveStreaming:false,mediaCodec:1}}
            style={{width,height:200,top:400}} rotation={0}
            onLoading={()=>{}} onPaused={()=>{}}
            onPlaying={()=>{}} onShutdown={()=>{}}/>
      </View>
    );
  }
}

注意在使用中时应设置组件的宽高;

属性:

 source: PropTypes.shape({                          // 是否符合指定格式的
        uri: PropTypes.string.isRequired,//视频路径
        timeout: PropTypes.number, //视频准备时间
        mediaCodec: PropTypes.oneOf([0,1,2]), //视频解码类型,0:软解 1:硬解码, 2:自动
        liveStreaming: PropTypes.bool, /视频是否为直播流
    }).isRequired,
    paused:PropTypes.bool,//视频是否暂停
    rotation:PropTypes.number,//设置角度
    aspectRatio: PropTypes.oneOf([0, 1, 2, 3, 4]),// 视频模式
    /**
         *  ASPECT_RATIO_ORIGIN = 0;
         *  ASPECT_RATIO_FIT_PARENT = 1
         *  ASPECT_RATIO_PAVED_PARENT = 2
         *  ASPECT_RATIO_16_9 = 3
         *  ASPECT_RATIO_4_3 = 4
         */
    onLoading: PropTypes.func,//视频加载
    onPaused: PropTypes.func,//视频暂停了
    onShutdown: PropTypes.func,//视频播放完成
    onPlayerError: PropTypes.func,//视频播放错误
    onPlaying: PropTypes.func,//视频播放中
    ...View.propTypes,

示例:

图片名称

react-native-android-piliplayer's People

Contributors

2534290808 avatar

Stargazers

Janky avatar  avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.