https://github.com/stemplayer-js/stemplayer-js
A streaming, low latency Stem Player Web-Component
https://github.com/stemplayer-js/stemplayer-js
audio stemplayer web-component
Last synced: about 1 year ago
JSON representation
A streaming, low latency Stem Player Web-Component
- Host: GitHub
- URL: https://github.com/stemplayer-js/stemplayer-js
- Owner: stemplayer-js
- License: gpl-3.0
- Created: 2023-05-12T20:06:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T15:58:53.000Z (about 2 years ago)
- Last Synced: 2024-05-22T17:03:07.155Z (about 2 years ago)
- Topics: audio, stemplayer, web-component
- Language: JavaScript
- Homepage: https://stemplayer-js.com
- Size: 6.33 MB
- Stars: 5
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# \
A streaming, low latency Stem Player Web-Component

[See this live example of our stem player](https://stemplayer-js.com)
This webcomponent follows the [open-wc](https://github.com/open-wc/open-wc) recommendation.
## Contributing
> This repo is a subtree split of [our monorepo](https://github.com/firstcoders/stemplayer-js-monorepo). Using a monorepo greatly simplifies development of many packages with dependencies. If you'd like to contribute to the development of stemplayer-js, please create a pull-request there.
## Installation
```bash
npm i @stemplayer-js/stemplayer-js
```
## Usage
```html
import '@stemplayer-js/stemplayer-js/element.js';
```
See [here for further options, events and CSS variables](./docs/stemplayer-js.md)
# Browser Support
The Player works in [browsers supporting the Web Audio API](https://caniuse.com/#feat=audio-api). This includes most modern browsers.
The stem player is built as a [web-component](https://caniuse.com/?search=web%20components) which is supported natively by most modern browsers.
For targeting older browsers, you can utilise your own build system.
[Polyfills for web-components](https://www.jsdelivr.com/package/npm/@webcomponents/webcomponentsjs) exist for support for older browsers.
# Audio
The player consumes m3u8 playlist files known from the [HLS protocol](https://en.wikipedia.org/wiki/HTTP_Live_Streaming).
The audio is split up into chunks and served (over simple HTTP) separately.
**Why HLS and not just download whole files?**
Downloading and decoding, for example, 10 5minute audio files will consume bandwith and bloat memory: each minute of every audio file worth of mp3 data is decoded into 44k PCM data and will consume roughly 100mb. By using live streaming we not only speed up playback, we also reduce the memory footprint.
**Why not progressive download?**
We need to use the web audio API to achieve precise synchronized playback.
See also
- [https://ffmpeg.org/ffmpeg-formats.html#toc-hls-1](https://ffmpeg.org/ffmpeg-formats.html#toc-hls-1)
- [https://ffmpeg.org/ffmpeg-formats.html#toc-segment_002c-stream_005fsegment_002c-ssegment](https://ffmpeg.org/ffmpeg-formats.html#toc-segment_002c-stream_005fsegment_002c-ssegment)
See also this [Docker image](https://github.com/sound-ws/docker-segment-audio) to help you segment your audio.
If you have an AWS environment, we have also created [a Serverless Backend](https://github.com/stemplayer-js/api) that will do this for you.
# Waveforms
Because we don't download the entire audio file, we cannot analyse the audio so that we can display a nice waveform. So unfortunately these also need to be pre-generated. Although inconvenient, it is probably good practice anyway as a waveform in json format is very small in size; there is no need to re-compute it time and time again.
[See here for info on how to generate compatible waveforms](https://github.com/bbc/audiowaveform). Make sure you limit the `--pixels-per-second` to around `20`, since by default the library will output that contains too much detail.
The output will have to be normalized so the waveform will be represented by an array of numbers that is between -1 and +1.
See here for a [Docker image](https://github.com/sound-ws/docker-generate-waveforms) which should (hopefully) help.
If you have an AWS environment, we have also created [a Serverless Backend](https://github.com/stemplayer-js/api) that will do this for you.
## Linting and formatting
To scan the project for linting and formatting errors, run
```bash
npm run lint
```
To automatically fix linting and formatting errors, run
```bash
npm run format
```
## Testing with Web Test Runner
To execute a single test run:
```bash
npm run test
```
To run the tests in interactive watch mode run:
```bash
npm run test:watch
```
## Tooling configs
For most of the tools, the configuration is in the `package.json` to minimize the amount of files in your project.
If you customize the configuration a lot, you can consider moving them to individual files.
## Local Demo with `web-dev-server`
```bash
npm start
```
To run a local development server that serves the basic demo located in `demo/index.html`