JSPM

@eyevinn/mss

0.1.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q35236F
  • License MIT

Microsoft Smooth Streaming NPM library

Package Exports

  • @eyevinn/mss

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@eyevinn/mss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

License: MIT Slack

A Node library to parse Microsoft Smooth Streaming manifests.

Installation

npm install --save @eyevinn/mss

Example

const { MSSParser } = require("@eyevinn/mss");

const parser = new MSSParser();
parser.on("finish", () => {
  console.log(parser.mss.header);
  parser.mss.streams.map(stream => {
    console.log(stream);
  });
});

const res = await fetch(url);
res.body.pipe(parser);

About Eyevinn Technology

Eyevinn Technology is an independent consultant firm specialized in video and streaming. Independent in a way that we are not commercially tied to any platform or technology vendor.

At Eyevinn, every software developer consultant has a dedicated budget reserved for open source development and contribution to the open source community. This give us room for innovation, team building and personal competence development. And also gives us as a company a way to contribute back to the open source community.

Want to know more about Eyevinn and how it is to work here. Contact us at work@eyevinn.se!