npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

videojs-contrib-media-sources

v4.7.2

Published

A Media Source Extensions plugin for video.js

Downloads

80,944

Readme

videojs-media-sources

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.

Lead Maintainer: Jon-Carlos Rivera @imbcmdth

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.