duo-video

1.0.4 • Public • Published

DuoVideo

DuoVideo is a react component for playing two videos synced. Finally rendered in webgl with an option to have an audiofile playing in sync aswell. There is also an option to pass in your own fragment shader to control the final graphics.

Installation

Use npm or yarn to install DuoVideo.

yarn add duo-video

Usage

import DuoVideo from 'duo-video';

Loop to keep things in sync

ref is returned from DuoVideo component. Look below for details about playerState and playerDispatch

const intervalRef = useRef(null);
 
useEffect(() => {
  if (playerState.canBeSafelyPlayed) {
    intervalRef.current = setInterval(() => {
      if (ref && ref.current) {
        ref.current.checkBuffers(playerState, playerDispatch);
      }
    }, 2000);
 
    if (ref && ref.current) {
      ref.current.checkBuffers(playerState, playerDispatch);
    }
  }
 
  return () => {
    clearInterval(intervalRef.current);
  };
}, [playerState, playerDispatch]);

DuoVideoBuffer

{
  audioBuffer?: number,
  video0Buffer: number,
  video1Buffer: number,
}

VideoObj

{
  src: string, //hls src || if (mp4 = true) mp4 src
  fallback: string, //mp4 src
  mp4?: boolean, //force use mp4
}

DuoVideo Props

{
  videoPaths: Array<VideoObj>, // Length = 2
  audioPath?: string,
  frontRef: Object,
  currentIndex: number,
  onMediaCanBeSafelyPlayed: () => void,
  onMediaReady: (boolean) => void,
  fragmentShader?: string,
  videoResolution: Array<number>,
  showDebug?: boolean,
}

Player State

The component requires a reducer to be passed to public functions which are explained below.

const playerReducer = (state: Object, action: Object) => {
  switch (action.type) {
    case 'loading':
      return {
        ...state,
        isLoading: action.payload,
      };
    case 'playing':
      return {
        ...state,
        isPlaying: action.payload,
      };
    case 'safely-played':
      return {
        ...state,
        canBeSafelyPlayed: action.payload,
      };
    case 'mute':
      return {
        ...state,
        isMuted: action.payload,
      };
    default:
      throw new Error();
  }
};
 
 
const playerInitState = {
  isLoading: false,
  isPlaying: false,
  canBeSafelyPlayed: false,
  isMuted: false,
};
 
const [playerState, playerDispatch] = useReducer(playerReducer, playerInitState);

Component

<DuoVideo
  videoPaths={videoPaths} //required
  audioPath={audioPath} //optional - has to have the same duration as the videos
  ref={ref} //required
  frontRef={graphicsLayerRef} //required
  currentIndex={videoIndex} //required
  onMediaCanBeSafelyPlayed={onMediaCanBeSafelyPlayed} //required
  onMediaReady={setMediaIsReady} //required - called after media loaded
  videoResolution={[1280, 720]} //required
  showDebug //optional
/>

Public Fns

There are some public functions available that's needed to interact with the component.

start: () => void //triggers ios safe mobile init - has to be called first from a user action
getBuffers () => DuoVideoBuffer
play: (playerDispatch) => void
pause: (playerDispatch) => void
getDuration: () => number
setCurrentTime: (time: number, playerState, playerDispatch) => void
getCurrentTime: () => number
mute: (payload: boolean, playerDispatch) => void

License

ISC

Package Sidebar

Install

npm i duo-video

Weekly Downloads

5

Version

1.0.4

License

ISC

Unpacked Size

118 kB

Total Files

33

Last publish

Collaborators

  • christianperss