# 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 [![Build Status](https://travis-ci.org/videojs/mpd-parser.svg?branch=master)](https://travis-ci.org/videojs/mpd-parser) [![Greenkeeper badge](https://badges.greenkeeper.io/videojs/mpd-parser.svg)](https://greenkeeper.io/) [![Slack Status](http://slack.videojs.com/badge.svg)](http://slack.videojs.com) [![NPM](https://nodei.co/npm/mpd-parser.png?downloads=true&downloadRank=true)](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