https://github.com/collaborne/media-player
A react video player with controls and functionality
https://github.com/collaborne/media-player
Last synced: about 2 months ago
JSON representation
A react video player with controls and functionality
- Host: GitHub
- URL: https://github.com/collaborne/media-player
- Owner: Collaborne
- License: other
- Created: 2022-05-12T11:39:51.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-03T20:21:12.000Z (3 months ago)
- Last Synced: 2025-03-21T21:11:38.735Z (2 months ago)
- Language: TypeScript
- Size: 24.4 MB
- Stars: 11
- Watchers: 4
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Media Player

[](http://nodejs.org/download/)



[](https://collaborne.github.io/media-player/coverage/lcov-report/)A media player build in React on top of [CookPete/react-player](https://github.com/CookPete/react-player).It supports the
[MUI theming and components](https://mui.com) and **own functionality of the Picture-in-Picture and Fullscreen API**.
And yes, it is updated to **React v18** :balloon:!You can **play** both: **audio** and **video** files.
*Note: At the moment we support video and audio files URL. Youtube, twitch and other media streaming services URL's are not supported yet.*
[Live demo](https://collaborne.github.io/media-player/)
## Introduction
`@collaborne/media-player` provides a set of: "draft" player that has own PIP and Fullscreen implementation, UI Controls, a
high flexibility for composing different player's UI Controls, hooks for accessing media store/data and event listeners, a ready to go media player solution
(with our own customized MUI Themed Components) and many other features.### Installation
1. Add as a dependency @collaborne/media-player
```bash
npm install --save @collaborne/media-player
```2. Install our peer dependencies. As an example we use `mui` for theming and UI Components, `react-transition-group` for animation, `lodash` for throttling, etc.
You can check peer dependencies in `package.json`. What is a peer dependency you can check [here](https://nodejs.org/es/blog/npm/peer-dependencies/).## How to use
### The Players
- **Out of the box**
You can just use a component that contains all the futures. See in [CodeSandbox](https://codesandbox.io/s/media-player-example-wnqwb1).
*NOTE: Wait the sandbox until installs all dependencies and refresh it in case if it got "staled"*```ts
import { MediaPlayer } from '@collaborne/media-player';export const MyComponent: React.FC = () => {
return (
);
};
```- **Compose own UI Controls**
This comes handy when you want to customize controls for the player. [CodeSandbox](https://codesandbox.io/s/core-player-gtlry2)
*NOTE: Wait the sandbox until installs all dependencies and refresh it in case if it got "staled"*```ts
import { CorePlayer, Controls, BottomControls } from "@collaborne/media-player";
import { PlayArrow } from "@mui/icons-material";
import { IconButton } from "@mui/material";const PlayButton = () => {
return (
);
};export default function App() {
return (
<>
>
);
}
```### Recipes
- **Using Media Store for the children**
We use [zustand](https://github.com/pmndrs/zustand) for storing media state(current time, isPlaying, isMuted...).
That's why we can get the state using `zustand` [approach](https://github.com/pmndrs/zustand#then-bind-your-components-and-thats-it).```ts
import { useMediaStore } from "@collaborne/media-player";
import { PlayArrow } from "@mui/icons-material";
import { IconButton } from "@mui/material";const PlayButton = () => {
const play = useMediaStore((state) => state.play);
return (
);
};
```- **Using MediaStore outside of the player**
All players state is connected to an event emitter. Triggering play, pause, mute, etc will trigger an event, that you can connect too.
So, subscribing to an event can boost your app and save performance. Code example in [CodeSandbox](https://codesandbox.io/s/media-player-outside-state-oxpko5).
*NOTE: Wait the sandbox until installs all dependencies and refresh it in case if it got "staled"*```ts
import {
MediaPlayer,
usePlayerContext,
useMediaListener
} from "@collaborne/media-player";// `` can control MediaStore not being a children of MediaPlayer
export default function App() {
// mediaContext is a ref value. Use only setters and media listener
const { mediaContext, setMediaContext } = usePlayerContext();
const listener = mediaContext?.getListener();
// useMediaListener - custom hooks that improves usability of emitted events
useMediaListener("play", () => alert("Play event was triggered"), listener);return (
);
}
```## Documentation
**@collaborne/media-player** categorizes its functionality as follows:
*Note: Functions may belong to multiple categories. For example, the `` is both a React Component and a UI Control.*
- React Component
- UI Controls: Components used to build player UI elements
- Players: Ready-to-use player implementations
- Custom Icons: Icons used for player controls
- React Context
- Context Providers
- Hooks: React hooks that simplify package usage
- MediaStore: Internal player storage
- Events: Events triggered by player activity, many of which are similar to standard video/audio web events (see [Mozilla Developer Network](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video#events)).Latest changes, types and interfaces [here](https://collaborne.github.io/media-player/docs/).
## Debugging
We use [debug](https://github.com/debug-js/debug) package for logging events. As you can see in our [live demo](https://collaborne.github.io/media-player/),
player provides you logs for native `` play and pause events, and also when state is changed. To use it in any your environment(we used in our storybook environment)
you need to add to yours `process.env` a parameter of `DEBUG=*`, that will print all these logs in browser's DevTools.## FAQ
- **Q:** How to use player in a performant way? How to avoid rerenders?
**A:** Subscribe to events. We emit events for almost all use cases(`play`, `pause`, `timeupdate`, `durationchange`, ...etc).
- **Q:** Do you support Youtube, vimeo sources?
**A:** At the moment, no. We support only files.## License
Apache-2.0 © [Collaborne](https://github.com/Collaborne)