Code Monkey home page Code Monkey logo

flowplayer-hlsjs's Introduction

Flowplayer hlsjs plugin

This plugin provides the hlsjs engine for playback of HLS streams in browsers which do not support playback of HLS in a VIDEO tag, and without the need for Flash.

The plugin relies on the hls.js client, courtesy of dailymotion.

Usage

See: https://flowplayer.org/docs/plugins.html#hlsjs

CommonJS

The plugin can be used in a browserify and/or webpack environment with a commonjs loader:

var flowplayer = require('flowplayer');
require('flowplayer-hlsjs'); // Plugin injects itself to flowplayer

flowplayer('#container', {
  clip: {
    sources: [{
      type: 'application/x-mpegurl',
      src: '//stream.flowplayer.org/bauhaus.m3u8'
    }]
  }
});

Demo

A fully documented demo can be found here.

Features

  • packs a compatibility tested version - current: v0.5.10 - of hls.js
  • by default the engine is only loaded if the browser supports MediaSource extensions reliably for playback
  • configurable manual HLS quality selection

Debugging

A quick way to find out whether there's a problem with the actual plugin component is to run your stream in the hls.js demo player.

For fine grained debugging load the unminified components and turn hlsjs debugging on:

<script src="//releases.flowplayer.org/6.0.5/flowplayer.min.js"></script>
<!-- unminified hls.js library -->
<script src="//releases.flowplayer.org/hlsjs/hls.js"></script>
<!-- separate hlsjs plugin component -->
<script src="//releases.flowplayer.org/hlsjs/flowplayer.hlsjs.js"></script>

<script>
// turn on hlsjs debugging
flowplayer.conf.hlsjs = {
  debug: true
});
</script>

Building the plugin

Build requirement:

cd flowplayer-hlsjs
make deps
make

Known issues and constraints

  • Only codecs which are valid in advanced MP4 video/audio and are supported by MSE are allowed: MPEG-4 AVC for video, AAC for audio.
  • Safari's MSE implementation has fatal problems with fragmented MP4 playback - for the moment the hlsjs engine will only be loaded in Safari for debugging purposes.

flowplayer-hlsjs's People

Contributors

phloxic avatar nnarhinen avatar

Stargazers

Gilles Blanchard avatar

Watchers

Gilles Blanchard avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.