mpd-generator
v2.1.10
Published
MPD manifest generator for video streaming using Dashjs
Downloads
8
Maintainers
Readme
mpd-generator
Manifest generating system for live content and video (.mpd) that follow the guidelines of the DASH dynamic profile.
Overview
This module generates an mpd manifest for using Dash.js from a video.
The manifest that is generated contains 720p, 480p, 360p and 240p resolutions as long as the original video allows it. Example: a video with 480p resolution will generate a manifesto with 480p, 360p and 240p resolutions.
The module implements Queue for the conversion of the videos.
Require:
Bento4 MP4 https://www.bento4.com/ FFmpeg https://ffmpeg.org/
Installation
This is a Node.js module available through the npm registry.
Before installing, download and install Node.js. Node.js 0.10 or higher is required.
If this is a brand new project, make sure to create a package.json
first with
the npm init
command.
Installation is done using the
npm install
command:
$ npm install mpd-generator
Installing
Assuming you’ve already installed Node.js, create a directory to hold your application, and make that your working directory.
$ mkdir myapp
$ cd myapp
Use the npm init command to create a package.json file for your application. For more information on how package.json works, see Specifics of npm’s package.json handling.
$ npm init
This command prompts you for a number of things, such as the name and version of your application. For now, you can simply hit RETURN to accept the defaults for most of them, with the following exception:
entry point: (index.js)
Enter app.js, or whatever you want the name of the main file to be. If you want it to be index.js, hit RETURN to accept the suggested default file name.
Now install mpd-generator in the myapp directory and save it in the dependencies list. For example:
$ npm i mpd-generator --save
Usage
const mpd_generator = require("mpd-generator");
const data = {
path: "public/0x01A58",
inputFile: "0x01A58",
format: ".mkv",
resolutions: [], //['720p', '480p', '360p', '240p', '144p']
qualities: [], //Bitrates ['low', 'medium', 'high']
};
mpd_generator.main(data);