GithubHelp home page GithubHelp logo

isabella232 / videojs-contrib-media-sources Goto Github PK

View Code? Open in Web Editor NEW

This project forked from videojs/videojs-contrib-media-sources

0.0 0.0 0.0 3.74 MB

Code for working with the media source extensions API and video.js

License: Other

JavaScript 96.62% HTML 3.38%

videojs-contrib-media-sources's Introduction

videojs-media-sources

Notice: this project is deprecated and succeeded by videojs-http-streaming. VHS supports HLS and DASH and is built into video.js 7, see the video.js 7 blog post

A Media Source Extensions shim for video.js.

Media Source Extensions (MSE) is a W3C draft specification that makes it possible to feed data directly to a video element. MSE allows video developers to build functionality like adaptive streaming directly in javascript.

Maintenance Status: Stable

Table of Contents generated with DocToc

Getting Started

On browsers that natively support Media Source Extensions, the HTML implementation will be used. If you're running in an environment without MSE, a Flash-backed polyfill will be used. Currently, the Flash polyfill only supports video content encoded in the FLV file format. For information on how FLVs are structured, Adobe hosts the latest version of the spec on their site.

The Flash polyfill attempts to balance throughput to the FLV with end-user responsiveness by asynchronously feeding bytes to the SWF at a fixed rate. By default, that rate is capped at 4MB/s. If you'd like to play higher bitrate content, you can adjust that setting:

// 8MB/s at 60fps
videojs.MediaSource.BYTES_PER_SECOND_GOAL = 8 * 1024 * 1024;

Setting the BYTES_PER_SECOND_GOAL too high may lead to dropped frames during playback on slower computers.

Check out an example of the plugin in use in example.html.

Options

You can configure some aspects of the MediaSource polyfill by specifying a hash of options when you construct it:

var mediaSource = new videojs.MediaSource({ mode: 'html5' });

mode

Type: string Values: 'auto', 'html5', 'flash' Default Value: 'auto'

How to determine the MediaSources implementation to use. With the default value of auto, the presence of native MediaSources is detected at construction time and they're used if available. Choosing html5 or flash will force the use of that respective MediaSource implementation, even if it does not appear the browser supports it.

Release History

  • 1.0.0: throw an error if appends are called during an update
  • 0.3.0: Delegate SourceBuffer.abort() calls to the SWF
  • 0.2.0: Improve interactivity by batching communication with Flash.
  • 0.1.0: Initial release

License

See LICENSE-APACHE2.

videojs-contrib-media-sources's People

Contributors

albertyw avatar askaliuk avatar bclwhitaker avatar benjaminp avatar brandonocasey avatar dmlap avatar eigood avatar forbesjo avatar gesinger avatar gkatsev avatar heff avatar imbcmdth avatar mjneil avatar mrocajr avatar ruchigupta19 avatar squarebracket avatar tomjohnson916 avatar zhuangs 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.