kiraninbng / shaka-player-react

A simple React component wrapper for shaka-player

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shaka Player React

A React component for Shaka Player, an open-source JavaScript library for adaptive media. It is highly recommended to check the official shaka documentation first.

Installation

npm install shaka-player-react --save

yarn add shaka-player-react

Usage

Before you start, make sure you load the CSS shipped with shaka-player.

import React from 'react';
import ShakaPlayer from 'shaka-player-react';

function App() {
  return (
    <ShakaPlayer autoPlay src="https://streams.com/example.mpd" />
  );
}

The following ShakaPlayer properties are supported:

Property Description Type
src The MPEG-DASH, or HLS media asset. Is provided to shaka.Player.load on mount or change. String
autoPlay Whether the asset should autoplay or not, directly bound to the HTMLVideoElement element. Boolean
width Width of the player. Number
height Height of the player. Number

Access shaka's player object.

The following is a more advanced setup to illustrate how you can integrate shaka's features in React.

import React, { useRef, useEffect } from 'react';
import ShakaPlayer from 'shaka-player-react';

function App() {
  const controllerRef = useRef(null);
  
  useEffect(() => {
    const { 
      /** @type {shaka.Player} */ player, 
      /** @type {shaka.ui.Overlay} */ ui,
      /** @type {HTMLVideoElement} */ videoElement,
    } = controllerRef.current;
    
    async function loadAsset() {
      // Load an asset.
      await player.load('https://streams.com/example.mpd');
      
      // Trigger play.
      videoElement.play();
    }
    
    loadAsset();
  }, []);
  
  return (
    <ShakaPlayer ref={controllerRef} />
  );
}

Or check the example in this repository.

About

A simple React component wrapper for shaka-player

License:MIT License


Languages

Language:JavaScript 96.8%Language:HTML 3.2%