https://github.com/eyevinn/node-mss
Microsoft Smooth Streaming NPM library
https://github.com/eyevinn/node-mss
library
Last synced: 9 months ago
JSON representation
Microsoft Smooth Streaming NPM library
- Host: GitHub
- URL: https://github.com/eyevinn/node-mss
- Owner: Eyevinn
- License: mit
- Created: 2021-11-12T12:47:44.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-12T13:26:44.000Z (over 4 years ago)
- Last Synced: 2025-07-02T06:19:58.808Z (about 1 year ago)
- Topics: library
- Language: TypeScript
- Size: 16.6 KB
- Stars: 1
- Watchers: 7
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://opensource.org/licenses/MIT) [](http://slack.streamingtech.se)
A Node library to parse Microsoft Smooth Streaming manifests.
## Installation
```
npm install --save @eyevinn/mss
```
## Example
```javascript
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!