React Native api.video player
  

!npm !ts
api.video is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app.
- Table of contents
- Project description
- Getting started
- Installation
- Limitations
- Code sample
- Documentation
- Props & Methods
- Using methods
- FAQ
React Native video player to play vod and lives from api.video
``sh`
npm install @api.video/react-native-player`
orsh`
yarn add @api.video/react-native-player`
_Note: if you are on iOS, you will need this extra step:_
Install the native dependencies with Cocoapodssh`
cd ios && pod install
For the moment, this player component is based on the api.video's javascript player (displayed in a react-native-webview), and therefore it suffers from the same limitation as every players displayed in browsers.
We plan to base the player component on natives video players in a further release to avoid this kind of limitation. Stay tuned!
`jsx
import React from 'react';
import ApiVideoPlayer from '@api.video/react-native-player';
const App = () =>
export default App;
`
`ts
// props:
type PlayerProps = {
// the id of the video (required)
videoId: string;
// if the video is private, the private token of the video
privateToken?: string;
// if the video is private, the session token for the video (avh)
sessionToken?: string;
// whether the video is vod or live (default is 'vod')
type?: 'vod' | 'live';
// the controls are hidden (default false)
hideControls?: boolean;
// the video title is hidden (default false)
hideTitle?: boolean;
// start playing the video as soon as it is loaded (default false)
autoplay?: boolean;
// once the video is finished it automatically starts again (default false)
loop?: boolean;
// the video is muted (default false)
muted?: boolean;
// style to apply to the player component
style?: StyleProp
onControlsDisabled?: () => void;
onControlsEnabled?: () => void;
onEnded?: () => void;
onError?: () => void;
onFirstPlay?: () => void;
onFullScreenChange?: (isFullScreen: boolean) => void;
onPause?: () => void;
onPlay?: () => void;
onPlayerResize?: () => void;
onQualityChange?: (resolution: { height: number, width: number }) => void;
onRateChange?: () => void;
onReady?: () => void;
onResize?: () => void;
onSeeking?: () => void;
onTimeUpdate?: ( currentTime: number ) => void;
onUserActive?: () => void;
onUserInactive?: () => void;
onVolumeChange?: ( volume: number ) => void;
}
// methods:
play(): void;
pause(): void;
requestFullscreen(): void;
seek(time: number): void;
setCurrentTime(time: number): void;
setPlaybackRate(rate: number): void;
setVolume(volume: number): void;
`
jsx
import React, { Component } from 'react';
import ApiVideoPlayer from '@api.video/react-native-player';
import { Button, View } from 'react-native';export default class App extends Component {
render() {
return (
ref={(r) => (this.player = r)}
muted={true}
videoId="vi2G6Qr8ZVE67dWLNymk7qbc" />
)
}
}
``
[//]: # (These are reference links used in the body of this note and get stripped out when the markdown processor does its job. There is no need to format nicely because it shouldn't be seen. Thanks SO - http://stackoverflow.com/questions/4823468/store-comments-in-markdown-syntax)
[Issues]: