Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clappr/dash-shaka-playback
A dash playback (based on shaka-player) for :clapper: Clappr
https://github.com/clappr/dash-shaka-playback
clappr dash playback player plugin shaka-player
Last synced: about 2 months ago
JSON representation
A dash playback (based on shaka-player) for :clapper: Clappr
- Host: GitHub
- URL: https://github.com/clappr/dash-shaka-playback
- Owner: clappr
- License: bsd-3-clause
- Created: 2015-10-31T20:38:27.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-30T18:15:33.000Z (8 months ago)
- Last Synced: 2024-10-28T17:32:55.162Z (2 months ago)
- Topics: clappr, dash, playback, player, plugin, shaka-player
- Language: JavaScript
- Size: 5.52 MB
- Stars: 74
- Watchers: 19
- Forks: 27
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/dash-shaka-playback.svg)](https://badge.fury.io/js/dash-shaka-playback)
[![license](https://img.shields.io/badge/license-BSD--3--Clause-blue.svg)](https://img.shields.io/badge/license-BSD--3--Clause-blue.svg)# dash-shaka-playback
A [clappr](https://github.com/clappr/clappr) playback to play dash based on the amazing [shaka-player](https://github.com/google/shaka-player).
> CDN JSDELIVR: https://cdn.jsdelivr.net/gh/clappr/dash-shaka-playback@latest/dist/dash-shaka-playback.js
>
> CDNJS: https://cdnjs.cloudflare.com/ajax/libs/dash-shaka-playback/2.0.5/dash-shaka-playback.js
>
> NPM: https://www.npmjs.com/package/dash-shaka-playback/## Changelog
* supports closed caption (subtitles)
# Demo
[![dash shaka playback screenshot](https://raw.githubusercontent.com/clappr/dash-shaka-playback/master/public/screen-shot-dash-clappr.png)](https://jsfiddle.net/m8ndduLo/69/)
# Usage
```html
var player = new Clappr.Player(
{
source: '//storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd',
plugins: [DashShakaPlayback],
shakaConfiguration: {
preferredAudioLanguage: 'pt-BR',
streaming: {
rebufferingGoal: 15
}
},
shakaOnBeforeLoad: function(shaka_player) {
// shaka_player.getNetworkingEngine().registerRequestFilter() ...
},
parentId: '#player'
});
```
# DRM
If need to protect your content (DRM) you must use the `shakaConfiguration` following the [shaka configuration](http://shaka-player-demo.appspot.com/docs/api/tutorial-drm-config.html) need.
# License Wrapping
If need to wrap DRM license requests or responses you use `shakaOnBeforeLoad` following [shaka License Wrapping](http://shaka-player-demo.appspot.com/docs/api/tutorial-license-wrapping.html) guide.
# Development
Install yarn:
https://yarnpkg.com/lang/en/docs/install/
Install dependencies:
`yarn install`
Run dev. server :
`yarn start`
By default, dev. server is listening on `http://0.0.0.0:8080`.
Build plugin:
`yarn dist`
By default, Shaka player is bundled with plugin. A "lightweight" version of this plugin, without shaka player bundled, `dash-shaka-playback-external.min.js` is available.
# "extra" features
This playback offers you an API for handling with: audio, video and text tracks.
```javascript
selectTrack(track)
textTracks()
audioTracks()
videoTracks()
```# For the older versions [check](https://github.com/clappr/dash-shaka-playback/tree/releases)