0b914ef2b9
* added trackId to exoplayer onLoad callback * added trackInfo to bandwidth callback * syntax fix * syntax fix * version update * sending complete logcat for media playback exception ExoPlaybackException * version bump * package publish changes * Live playback fix * Version bump * import fix * version bump * configurable preferredForwardBufferDuration * configurable preferredForwardBufferDuration * version update * Exposing time * exo player window current tsp * return type * Current window timestamp in epoch * iOS changes * version update * Updated package.json * updated version * CurrentTime bug fix * Updated package.json * Updated currentPlaybackTime * Updated currentPlayback logic * Updated package.json * Bug fix * Added semicolon * updated package.json * Updated ReactVideoView * updated verison * Revert package.json changes * Update ReactVideoView.java * Use standard log * Document preferredForwardBufferDuration (iOS) * Document currentPlaybackTime * Document trackId * Update CHANGELOG.md * Update CHANGELOG.md * Update README.md * Update CHANGELOG.md Co-authored-by: anubansal <anu.bansal@curefit.com> Co-authored-by: Sivakumar J <sivakumar@curefit.com> Co-authored-by: parikshit <parikshit@curefit.com> Co-authored-by: anubansal92 <40559524+anubansal92@users.noreply.github.com> Co-authored-by: Rishu Agrawal <rishu.agrawal@v.curefit.com> Co-authored-by: rishu-curefit <54575330+rishu-curefit@users.noreply.github.com>
533 lines
15 KiB
JavaScript
533 lines
15 KiB
JavaScript
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { StyleSheet, requireNativeComponent, NativeModules, View, ViewPropTypes, Image, Platform, UIManager, findNodeHandle, Dimensions } from 'react-native';
|
|
import resolveAssetSource from 'react-native/Libraries/Image/resolveAssetSource';
|
|
import TextTrackType from './TextTrackType';
|
|
import FilterType from './FilterType';
|
|
import VideoResizeMode from './VideoResizeMode.js';
|
|
|
|
const styles = StyleSheet.create({
|
|
base: {
|
|
overflow: 'hidden',
|
|
},
|
|
});
|
|
|
|
export { TextTrackType, FilterType };
|
|
|
|
export default class Video extends Component {
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
showPoster: !!props.poster,
|
|
androidFullScreen: false,
|
|
videoContainerLayout_x: 0,
|
|
videoContainerLayout_y: 0,
|
|
};
|
|
this.getDimension();
|
|
}
|
|
|
|
/**
|
|
* @description this is will set the width and height needs to be considered for full screen
|
|
*/
|
|
getDimension() {
|
|
if (Dimensions.get('window').width < Dimensions.get('window').height) {
|
|
this.width = Math.round(Dimensions.get('window').height);
|
|
this.height = Math.round(Dimensions.get('window').width);
|
|
}
|
|
else {
|
|
this.width = Math.round(Dimensions.get('window').width);
|
|
this.height = Math.round(Dimensions.get('window').height);
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
UIManager.measure(findNodeHandle(this._videoContainer), (x, y) => {
|
|
this.setState({
|
|
videoContainerLayout_x: x,
|
|
videoContainerLayout_y: y,
|
|
});
|
|
});
|
|
}
|
|
|
|
setNativeProps(nativeProps) {
|
|
this._root.setNativeProps(nativeProps);
|
|
}
|
|
|
|
toTypeString(x) {
|
|
switch (typeof x) {
|
|
case 'object':
|
|
return x instanceof Date
|
|
? x.toISOString()
|
|
: JSON.stringify(x); // object, null
|
|
case 'undefined':
|
|
return '';
|
|
default: // boolean, number, string
|
|
return x.toString();
|
|
}
|
|
}
|
|
|
|
stringsOnlyObject(obj) {
|
|
const strObj = {};
|
|
|
|
Object.keys(obj).forEach(x => {
|
|
strObj[x] = this.toTypeString(obj[x]);
|
|
});
|
|
|
|
return strObj;
|
|
}
|
|
|
|
seek = (time, tolerance = 100) => {
|
|
if (isNaN(time)) {throw new Error('Specified time is not a number');}
|
|
|
|
if (Platform.OS === 'ios') {
|
|
this.setNativeProps({
|
|
seek: {
|
|
time,
|
|
tolerance,
|
|
},
|
|
});
|
|
} else {
|
|
this.setNativeProps({ seek: time });
|
|
}
|
|
};
|
|
|
|
presentFullscreenPlayer = () => {
|
|
this.setNativeProps({ fullscreen: true });
|
|
};
|
|
|
|
dismissFullscreenPlayer = () => {
|
|
this.setNativeProps({ fullscreen: false });
|
|
};
|
|
|
|
save = async (options?) => {
|
|
return await NativeModules.VideoManager.save(options, findNodeHandle(this._root));
|
|
}
|
|
|
|
restoreUserInterfaceForPictureInPictureStopCompleted = (restored) => {
|
|
this.setNativeProps({ restoreUserInterfaceForPIPStopCompletionHandler: restored });
|
|
};
|
|
|
|
_assignRoot = (component) => {
|
|
this._root = component;
|
|
};
|
|
|
|
_hidePoster = () => {
|
|
if (this.state.showPoster) {
|
|
this.setState({ showPoster: false });
|
|
}
|
|
}
|
|
|
|
_onLoadStart = (event) => {
|
|
if (this.props.onLoadStart) {
|
|
this.props.onLoadStart(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onLoad = (event) => {
|
|
// Need to hide poster here for windows as onReadyForDisplay is not implemented
|
|
if (Platform.OS === 'windows') {
|
|
this._hidePoster();
|
|
}
|
|
if (this.props.onLoad) {
|
|
this.props.onLoad(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onError = (event) => {
|
|
if (this.props.onError) {
|
|
this.props.onError(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onProgress = (event) => {
|
|
if (this.props.onProgress) {
|
|
this.props.onProgress(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onBandwidthUpdate = (event) => {
|
|
if (this.props.onBandwidthUpdate) {
|
|
this.props.onBandwidthUpdate(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onSeek = (event) => {
|
|
if (this.props.onSeek) {
|
|
this.props.onSeek(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onEnd = (event) => {
|
|
if (this.props.onEnd) {
|
|
this.props.onEnd(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onTimedMetadata = (event) => {
|
|
if (this.props.onTimedMetadata) {
|
|
this.props.onTimedMetadata(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onFullscreenPlayerWillPresent = (event) => {
|
|
Platform.OS === 'android' && this.setState({ androidFullScreen: true });
|
|
if (this.props.onFullscreenPlayerWillPresent) {
|
|
this.props.onFullscreenPlayerWillPresent(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onFullscreenPlayerDidPresent = (event) => {
|
|
if (this.props.onFullscreenPlayerDidPresent) {
|
|
this.props.onFullscreenPlayerDidPresent(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onFullscreenPlayerWillDismiss = (event) => {
|
|
Platform.OS === 'android' && this.setState({ androidFullScreen: false });
|
|
if (this.props.onFullscreenPlayerWillDismiss) {
|
|
this.props.onFullscreenPlayerWillDismiss(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onFullscreenPlayerDidDismiss = (event) => {
|
|
if (this.props.onFullscreenPlayerDidDismiss) {
|
|
this.props.onFullscreenPlayerDidDismiss(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onReadyForDisplay = (event) => {
|
|
if (!this.props.audioOnly) {
|
|
this._hidePoster();
|
|
}
|
|
|
|
if (this.props.onReadyForDisplay) {
|
|
this.props.onReadyForDisplay(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onPlaybackStalled = (event) => {
|
|
if (this.props.onPlaybackStalled) {
|
|
this.props.onPlaybackStalled(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onPlaybackResume = (event) => {
|
|
if (this.props.onPlaybackResume) {
|
|
this.props.onPlaybackResume(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onPlaybackRateChange = (event) => {
|
|
if (this.props.onPlaybackRateChange) {
|
|
this.props.onPlaybackRateChange(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onExternalPlaybackChange = (event) => {
|
|
if (this.props.onExternalPlaybackChange) {
|
|
this.props.onExternalPlaybackChange(event.nativeEvent);
|
|
}
|
|
}
|
|
|
|
_onAudioBecomingNoisy = () => {
|
|
if (this.props.onAudioBecomingNoisy) {
|
|
this.props.onAudioBecomingNoisy();
|
|
}
|
|
};
|
|
|
|
_onPictureInPictureStatusChanged = (event) => {
|
|
if (this.props.onPictureInPictureStatusChanged) {
|
|
this.props.onPictureInPictureStatusChanged(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onRestoreUserInterfaceForPictureInPictureStop = (event) => {
|
|
if (this.props.onRestoreUserInterfaceForPictureInPictureStop) {
|
|
this.props.onRestoreUserInterfaceForPictureInPictureStop();
|
|
}
|
|
};
|
|
|
|
_onAudioFocusChanged = (event) => {
|
|
if (this.props.onAudioFocusChanged) {
|
|
this.props.onAudioFocusChanged(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
_onBuffer = (event) => {
|
|
if (this.props.onBuffer) {
|
|
this.props.onBuffer(event.nativeEvent);
|
|
}
|
|
};
|
|
|
|
getViewManagerConfig = viewManagerName => {
|
|
if (!NativeModules.UIManager.getViewManagerConfig) {
|
|
return NativeModules.UIManager[viewManagerName];
|
|
}
|
|
return NativeModules.UIManager.getViewManagerConfig(viewManagerName);
|
|
};
|
|
|
|
render() {
|
|
const resizeMode = this.props.resizeMode;
|
|
const source = resolveAssetSource(this.props.source) || {};
|
|
const shouldCache = !source.__packager_asset;
|
|
|
|
let uri = source.uri || '';
|
|
if (uri && uri.match(/^\//)) {
|
|
uri = `file://${uri}`;
|
|
}
|
|
|
|
if (!uri) {
|
|
console.warn('Trying to load empty source.');
|
|
}
|
|
|
|
const isNetwork = !!(uri && uri.match(/^https?:/));
|
|
const isAsset = !!(uri && uri.match(/^(assets-library|ipod-library|file|content|ms-appx|ms-appdata):/));
|
|
|
|
let nativeResizeMode;
|
|
const RCTVideoInstance = this.getViewManagerConfig('RCTVideo');
|
|
|
|
if (resizeMode === VideoResizeMode.stretch) {
|
|
nativeResizeMode = RCTVideoInstance.Constants.ScaleToFill;
|
|
} else if (resizeMode === VideoResizeMode.contain) {
|
|
nativeResizeMode = RCTVideoInstance.Constants.ScaleAspectFit;
|
|
} else if (resizeMode === VideoResizeMode.cover) {
|
|
nativeResizeMode = RCTVideoInstance.Constants.ScaleAspectFill;
|
|
} else {
|
|
nativeResizeMode = RCTVideoInstance.Constants.ScaleNone;
|
|
}
|
|
|
|
const nativeProps = Object.assign({}, this.props);
|
|
Object.assign(nativeProps, {
|
|
style: [styles.base, nativeProps.style],
|
|
resizeMode: nativeResizeMode,
|
|
src: {
|
|
uri,
|
|
isNetwork,
|
|
isAsset,
|
|
shouldCache,
|
|
type: source.type || '',
|
|
mainVer: source.mainVer || 0,
|
|
patchVer: source.patchVer || 0,
|
|
requestHeaders: source.headers ? this.stringsOnlyObject(source.headers) : {},
|
|
},
|
|
onVideoLoadStart: this._onLoadStart,
|
|
onVideoLoad: this._onLoad,
|
|
onVideoError: this._onError,
|
|
onVideoProgress: this._onProgress,
|
|
onVideoSeek: this._onSeek,
|
|
onVideoEnd: this._onEnd,
|
|
onVideoBuffer: this._onBuffer,
|
|
onVideoBandwidthUpdate: this._onBandwidthUpdate,
|
|
onTimedMetadata: this._onTimedMetadata,
|
|
onVideoAudioBecomingNoisy: this._onAudioBecomingNoisy,
|
|
onVideoExternalPlaybackChange: this._onExternalPlaybackChange,
|
|
onVideoFullscreenPlayerWillPresent: this._onFullscreenPlayerWillPresent,
|
|
onVideoFullscreenPlayerDidPresent: this._onFullscreenPlayerDidPresent,
|
|
onVideoFullscreenPlayerWillDismiss: this._onFullscreenPlayerWillDismiss,
|
|
onVideoFullscreenPlayerDidDismiss: this._onFullscreenPlayerDidDismiss,
|
|
onReadyForDisplay: this._onReadyForDisplay,
|
|
onPlaybackStalled: this._onPlaybackStalled,
|
|
onPlaybackResume: this._onPlaybackResume,
|
|
onPlaybackRateChange: this._onPlaybackRateChange,
|
|
onAudioFocusChanged: this._onAudioFocusChanged,
|
|
onAudioBecomingNoisy: this._onAudioBecomingNoisy,
|
|
onPictureInPictureStatusChanged: this._onPictureInPictureStatusChanged,
|
|
onRestoreUserInterfaceForPictureInPictureStop: this._onRestoreUserInterfaceForPictureInPictureStop,
|
|
});
|
|
|
|
const posterStyle = {
|
|
...StyleSheet.absoluteFillObject,
|
|
resizeMode: this.props.posterResizeMode || 'contain',
|
|
};
|
|
|
|
//androidFullScreen property will only impact on android. It will be always false for iOS.
|
|
const videoStyle = this.state.androidFullScreen ? {
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
width: this.width,
|
|
height: this.height,
|
|
backgroundColor: '#ffffff',
|
|
justifyContent: 'center',
|
|
zIndex: 99999,
|
|
marginTop: -1 * (this.state.videoContainerLayout_y ? parseFloat(this.state.videoContainerLayout_y) : 0), //margin: 0 - is not working properly. So, updated all the margin individually with 0.
|
|
marginLeft: -1 * (this.state.videoContainerLayout_x ? parseFloat(this.state.videoContainerLayout_x) : 0),
|
|
} : {};
|
|
|
|
return (
|
|
<View ref={(videoContainer) => {
|
|
this._videoContainer = videoContainer;
|
|
return videoContainer;
|
|
}} style={[nativeProps.style, videoStyle]}>
|
|
<RCTVideo
|
|
ref={this._assignRoot}
|
|
{...nativeProps}
|
|
style={StyleSheet.absoluteFill}
|
|
/>
|
|
{this.state.showPoster && (
|
|
<Image style={posterStyle} source={{ uri: this.props.poster }} />
|
|
)}
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
Video.propTypes = {
|
|
filter: PropTypes.oneOf([
|
|
FilterType.NONE,
|
|
FilterType.INVERT,
|
|
FilterType.MONOCHROME,
|
|
FilterType.POSTERIZE,
|
|
FilterType.FALSE,
|
|
FilterType.MAXIMUMCOMPONENT,
|
|
FilterType.MINIMUMCOMPONENT,
|
|
FilterType.CHROME,
|
|
FilterType.FADE,
|
|
FilterType.INSTANT,
|
|
FilterType.MONO,
|
|
FilterType.NOIR,
|
|
FilterType.PROCESS,
|
|
FilterType.TONAL,
|
|
FilterType.TRANSFER,
|
|
FilterType.SEPIA,
|
|
]),
|
|
filterEnabled: PropTypes.bool,
|
|
/* Native only */
|
|
src: PropTypes.object,
|
|
seek: PropTypes.oneOfType([
|
|
PropTypes.number,
|
|
PropTypes.object,
|
|
]),
|
|
fullscreen: PropTypes.bool,
|
|
onVideoLoadStart: PropTypes.func,
|
|
onVideoLoad: PropTypes.func,
|
|
onVideoBuffer: PropTypes.func,
|
|
onVideoError: PropTypes.func,
|
|
onVideoProgress: PropTypes.func,
|
|
onVideoBandwidthUpdate: PropTypes.func,
|
|
onVideoSeek: PropTypes.func,
|
|
onVideoEnd: PropTypes.func,
|
|
onTimedMetadata: PropTypes.func,
|
|
onVideoAudioBecomingNoisy: PropTypes.func,
|
|
onVideoExternalPlaybackChange: PropTypes.func,
|
|
onVideoFullscreenPlayerWillPresent: PropTypes.func,
|
|
onVideoFullscreenPlayerDidPresent: PropTypes.func,
|
|
onVideoFullscreenPlayerWillDismiss: PropTypes.func,
|
|
onVideoFullscreenPlayerDidDismiss: PropTypes.func,
|
|
|
|
/* Wrapper component */
|
|
source: PropTypes.oneOfType([
|
|
PropTypes.shape({
|
|
uri: PropTypes.string,
|
|
}),
|
|
// Opaque type returned by require('./video.mp4')
|
|
PropTypes.number,
|
|
]),
|
|
minLoadRetryCount: PropTypes.number,
|
|
maxBitRate: PropTypes.number,
|
|
resizeMode: PropTypes.string,
|
|
poster: PropTypes.string,
|
|
posterResizeMode: Image.propTypes.resizeMode,
|
|
repeat: PropTypes.bool,
|
|
automaticallyWaitsToMinimizeStalling: PropTypes.bool,
|
|
allowsExternalPlayback: PropTypes.bool,
|
|
selectedAudioTrack: PropTypes.shape({
|
|
type: PropTypes.string.isRequired,
|
|
value: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
}),
|
|
selectedVideoTrack: PropTypes.shape({
|
|
type: PropTypes.string.isRequired,
|
|
value: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
}),
|
|
selectedTextTrack: PropTypes.shape({
|
|
type: PropTypes.string.isRequired,
|
|
value: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
}),
|
|
textTracks: PropTypes.arrayOf(
|
|
PropTypes.shape({
|
|
title: PropTypes.string,
|
|
uri: PropTypes.string.isRequired,
|
|
type: PropTypes.oneOf([
|
|
TextTrackType.SRT,
|
|
TextTrackType.TTML,
|
|
TextTrackType.VTT,
|
|
]),
|
|
language: PropTypes.string.isRequired,
|
|
})
|
|
),
|
|
paused: PropTypes.bool,
|
|
muted: PropTypes.bool,
|
|
volume: PropTypes.number,
|
|
bufferConfig: PropTypes.shape({
|
|
minBufferMs: PropTypes.number,
|
|
maxBufferMs: PropTypes.number,
|
|
bufferForPlaybackMs: PropTypes.number,
|
|
bufferForPlaybackAfterRebufferMs: PropTypes.number,
|
|
}),
|
|
stereoPan: PropTypes.number,
|
|
rate: PropTypes.number,
|
|
pictureInPicture: PropTypes.bool,
|
|
playInBackground: PropTypes.bool,
|
|
preferredForwardBufferDuration: PropTypes.number,
|
|
playWhenInactive: PropTypes.bool,
|
|
ignoreSilentSwitch: PropTypes.oneOf(['ignore', 'obey']),
|
|
reportBandwidth: PropTypes.bool,
|
|
disableFocus: PropTypes.bool,
|
|
controls: PropTypes.bool,
|
|
audioOnly: PropTypes.bool,
|
|
currentTime: PropTypes.number,
|
|
fullscreenAutorotate: PropTypes.bool,
|
|
fullscreenOrientation: PropTypes.oneOf(['all', 'landscape', 'portrait']),
|
|
progressUpdateInterval: PropTypes.number,
|
|
useTextureView: PropTypes.bool,
|
|
hideShutterView: PropTypes.bool,
|
|
onLoadStart: PropTypes.func,
|
|
onLoad: PropTypes.func,
|
|
onBuffer: PropTypes.func,
|
|
onError: PropTypes.func,
|
|
onProgress: PropTypes.func,
|
|
onBandwidthUpdate: PropTypes.func,
|
|
onSeek: PropTypes.func,
|
|
onEnd: PropTypes.func,
|
|
onFullscreenPlayerWillPresent: PropTypes.func,
|
|
onFullscreenPlayerDidPresent: PropTypes.func,
|
|
onFullscreenPlayerWillDismiss: PropTypes.func,
|
|
onFullscreenPlayerDidDismiss: PropTypes.func,
|
|
onReadyForDisplay: PropTypes.func,
|
|
onPlaybackStalled: PropTypes.func,
|
|
onPlaybackResume: PropTypes.func,
|
|
onPlaybackRateChange: PropTypes.func,
|
|
onAudioFocusChanged: PropTypes.func,
|
|
onAudioBecomingNoisy: PropTypes.func,
|
|
onPictureInPictureStatusChanged: PropTypes.func,
|
|
needsToRestoreUserInterfaceForPictureInPictureStop: PropTypes.func,
|
|
onExternalPlaybackChange: PropTypes.func,
|
|
|
|
/* Required by react-native */
|
|
scaleX: PropTypes.number,
|
|
scaleY: PropTypes.number,
|
|
translateX: PropTypes.number,
|
|
translateY: PropTypes.number,
|
|
rotation: PropTypes.number,
|
|
...ViewPropTypes,
|
|
};
|
|
|
|
const RCTVideo = requireNativeComponent('RCTVideo', Video, {
|
|
nativeOnly: {
|
|
src: true,
|
|
seek: true,
|
|
fullscreen: true,
|
|
},
|
|
});
|