Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/benjipott/videojs-hlsjs

Hls.js plugin for videojs
https://github.com/benjipott/videojs-hlsjs

Last synced: 4 months ago
JSON representation

Hls.js plugin for videojs

Awesome Lists containing this project

README

        

# Videojs Hls.js

A revolutionary plugin for video.js

## Getting Started

Once you've added the plugin script to your page, you can use it with any video:

```html

videojs(document.querySelector('video'));

```

There's also a [working example](example.html) of the plugin you can check out if you're having trouble.

## Documentation
### Tech Options

You may pass in an options object to the plugin upon initialization. This
object may contain any of the following properties:

#### option

debug: false,
autoStartLoad: false,
maxBufferLength: 30,
maxBufferSize: 60 * 1000 * 1000,
enableWorker: true,
fragLoadingTimeOut: 20000,
fragLoadingMaxRetry: 6,
fragLoadingRetryDelay: 500,
manifestLoadingTimeOut: 10000,
manifestLoadingMaxRetry: 6,
manifestLoadingRetryDelay: 500,
fpsDroppedMonitoringPeriod: 5000,
fpsDroppedMonitoringThreshold: 0.2,
appendErrorMaxRetry: 200,

An example boolean option that has no effect.

## Release History

- 0.1.0: Initial release