# mpd-parser
**Repository Path**: mirrors_videojs/mpd-parser
## Basic Information
- **Project Name**: mpd-parser
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-18
- **Last Updated**: 2026-07-25
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# mpd-parser
[](https://travis-ci.org/videojs/mpd-parser)
[](https://greenkeeper.io/)
[](http://slack.videojs.com)
[](https://nodei.co/npm/mpd-parser/)
mpd parser
## Table of Contents
- [Installation](#installation)
- [Usage](#usage)
- [Parsed Output](#parsed-output)
- [Including the Parser](#including-the-parser)
- [`
```
### Browserify
When using with Browserify, install mpd-parser via npm and `require` the parser as you would any other module.
```js
var mpdParser = require('mpd-parser');
var parsedManifest = mpdParser.parse(manifest, { manifestUri });
```
With ES6:
```js
import { parse } from 'mpd-parser';
const parsedManifest = parse(manifest, { manifestUri });
```
### RequireJS/AMD
When using with RequireJS (or another AMD library), get the script in whatever way you prefer and `require` the parser as you normally would:
```js
require(['mpd-parser'], function(mpdParser) {
var parsedManifest = mpdParser.parse(manifest, { manifestUri });
});
```
## License
Apache-2.0. Copyright (c) Brightcove, Inc