
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
shaka-player-react
Advanced tools
A React component for [Shaka Player](https://github.com/google/shaka-player), an open-source JavaScript library for adaptive media.
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.
npm install shaka-player-react --save
yarn add shaka-player-react
As seen in the example below, the CSS bundled with shaka-player has been imported separately. This is because shaka-player-react does not require any CSS internally, which keeps you in full control of the styling as if you were not using this React wrapper.
import React from 'react';
import ShakaPlayer from 'shaka-player-react';
import 'shaka-player/dist/controls.css';
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 |
| playbackRate | Sets the speed of the audio/video playback. | Number |
| muted | Sets whether the video is muted or not | Boolean |
| loop | Sets whether teh audio/video should start over again when finished | Boolean |
| volume | Sets the volume of the audio/video | Number |
| className | Adds a class to the root element, which is a div. | String |
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.
import React from 'react';
import dynamic from 'next/dynamic';
const ShakaPlayer = dynamic(() => import('shaka-player-react'), { ssr: false });
export default function Index() {
return (
<div>
<ShakaPlayer autoPlay src="https://streams.com/example.mpd" />
</div>
);
}
When using next/dynamic with { ssr: false }, we'll make sure the component is not interpreted by Next.js SSR. As of today, pre-rendering shaka-player's UI is technically not possible due to the fact that it is not written in React (but in plain Javascript). Although, shaka-player heavily relies on browser API's and serves no real purpose on a backend anyways.
FAQs
A React component for [Shaka Player](https://github.com/google/shaka-player), an open-source JavaScript library for adaptive media.
The npm package shaka-player-react receives a total of 680 weekly downloads. As such, shaka-player-react popularity was classified as not popular.
We found that shaka-player-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.