npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mp4box-vg

v0.3.16-vg2

Published

JavaScript version of GPAC's MP4Box tool with some QuickTime features support and bugfixes.

Downloads

50

Readme

MP4Box.js

Build Status Coverage Status Dependency Status devDependency Status

JavaScript library to process MP4 files in the browser (and in NodeJS), with support for progressive parsing. Inspired by the MP4Box tool from the GPAC project. It can be used to:

A Player demo is available here, a File Analyzer is available here, and some QUnit tests are here

On this page, you'll find documentation on how to build MP4box.js, use it in a browser or in Node JS or contribute.

API

###Getting Information### Similar to MP4Box -info file.mp4, MP4Box.js can provide general information about the file (duration, number and types of tracks ...). For that, create an MP4Box object, set the onReady callback and provide data in the form of ArrayBuffer objects. MP4Box.js supports progressive parsing. You can provide small buffers at a time, the callback will be called when the 'moov' box is parsed.

var MP4Box = require('mp4box').MP4Box; // Or whatever import method you prefer.
var mp4box = new MP4Box();
mp4box.onError = function(e) {};
mp4box.onReady = function(info) {};
mp4box.appendBuffer(data);
mp4box.appendBuffer(data);
mp4box.appendBuffer(data);
...
mp4box.flush();

####onMoovStart()#### The onMoovStart callback is called when the 'moov' box is starting to be parsed. Depending on the download speed, it may take a while to download the whole 'moov' box. The end of parsing is signaled by the onReady callback.

mp4box.onMoovStart = function () {
	console.log("Starting to receive File Information");
}

####onReady(info)#### The onReady callback is called when the the 'moov' box has been parsed, i.e. when the metadata about the file is parsed.

mp4box.onReady = function (info) {
	console.log("Received File Information");
}

The info argument is an object with the following structure.

{
  "duration":360002,
  "timescale":600,
  "isFragmented":false,
  "isProgressive":true,
  "hasIOD":true,
  "brands":["isom"],
  "created":"2014-04-15T18:24:40.000Z",
  "modified":"2014-04-15T18:24:40.000Z",
  "tracks":[
    {
	  "id":2,
	  "created":"2012-02-13T23:07:31.000Z",
	  "modified":"2014-04-16T12:22:56.000Z",
	  "movie_duration":360000,
	  "layer":0,
	  "alternate_group":0,
	  "volume":0,
	  "track_width":320,
	  "track_height":180,
	  "timescale":25000,
	  "duration":15000000,
	  "bitrate":120000,
	  "codec":"avc1.42c00d",
	  "video":{
	    "width":320,"height":180
	  },
	  "language":"und",
	  "nb_samples":15000
	},
	{
	  "id":3,
	  "created":"2012-09-12T11:14:57.000Z",
	  "modified":"2014-04-16T12:22:56.000Z",
	  "movie_duration":360002,
	  "layer":0,
	  "alternate_group":0,
	  "volume":1,
	  "track_width":0,
	  "track_height":0,
	  "timescale":44100,
	  "duration":26460160,
	  "bitrate":60000,
	  "codec":"mp4a.40.2",
	  "audio":{
	    "sample_rate":44100,
		"channel_count":1,
		"sample_size":16
	  },
	  "language":"und",
	  "nb_samples":25840
	}
  ]
}
  • brands: Array of 4CC codes corresponding to the file brands as given in the ftyp box,
  • created: Date object, indicating the creation date of the file as given in the movie header,
  • modified: Date object, indicating the last modification date of the file as given in the movie header,
  • timescale: Number, corresponding to the timescale as given in the movie header,
  • duration: Number, providing the duration of the movie (unfragmented part) in timescale units,
  • isProgressive: boolean, indicating if the file can be played progressively,
  • isFragmented: boolean, indicating if the file is already fragmented,
  • fragment_duration: Number, giving the duration of the fragmented part of the file, in timescale units,
  • hasIOD: boolean, indicating if the the file contains an MPEG-4 Initial Object Descriptor
  • tracks: Array of track information objects

Track information object:

  • id: Number, giving track identifier,
  • created: Date object, indicating the creation date of the file as given in the track header,
  • modified: Date object, indicating the last modification date of the file as given in the track header,
  • alternate_group: Number, identifier of the alternate group the track belongs to,
  • timescale: Number, indicating the track timescale, as given in the track header,
  • duration: Number, providing the duration of the (unfragmented part of) track, in timescale units,
  • bitrate: Number, providing the bitrate of the track in bits per second,
  • nb_samples: Number, giving the number of track samples (ie. frames),
  • codec: String, giving the MIME codecs parameter for this track (e.g. "avc1.42c00d" or "mp4a.40.2"), to be used to create SourceBuffer objects with Media Source Extensions,
  • language: String, giving the 3-letter language code,
  • track_width: Number, width of the track as indicated in the track header,
  • track_height: Number, height of the track as indicated in the track header,
  • layer: Number, layer information as indicated in the track header,
  • video: Object, information specific for video tracks
  • audio: Object, information specific for audio tracks

Video-specific information object:

  • width: Number, width of the video track as indicated in the media header,
  • height: Number, height of the video track as indicated in the media header,

Audio-specific information object:

  • sample_rate: Number, sample rate as indicated in the media header,
  • channel_count: Number, number of channels as indicated in the media header,
  • sample_size: Number, size in bits of an uncompressed audio sample as indicated in the media header,

####onError(e)#### Indicates that an error has occured during the processing. e is a String.

mp4box.onError = function (e) {
	console.log("Received Error Message "+e);
}

####appendBuffer(data)#### Provides an ArrayBuffer to parse from. The ArrayBuffer must have a fileStart (Number) property indicating the 0-based position of first byte of the ArrayBuffer in the original file. Returns the offset (in the original file) that is expected to be the fileStart value of the next buffer. This is particularly useful when the moov box is not at the beginning of the file.

var ab = getArrayBuffer();
ab.fileStart = 0;
var nextBufferStart = mp4box.appendBuffer(ab);

####start()#### Indicates that sample processing can start (segmentation or extraction). Sample data already received will be processed and new buffer append operation will trigger sample processing as well.

####stop()#### Indicates that sample processing is stopped. Buffer append operations will not trigger calls to onSamples or onSegment.

####flush()#### Indicates that no more data will be received and that all remaining samples should be flushed in the segmentation or extraction process.

###Segmentation###

var mp4box = new MP4Box();
mp4box.onReady = function(info) {
  ...
  mp4box.onSegment = function (id, user, buffer) {}
  mp4box.setSegmentOptions(info.tracks[0].id, sb, options);  
  var initSegs = mp4box.initializeSegmentation();  
  mp4box.start();
  ...
};

####setSegmentOptions(track_id, user, options)#### Indicates that the track with the given track_id should be segmented, with the given options. When segments are ready, the callback onSegment is called with the user parameter. The options argument is an object with the following properties:

  • nbSamples: Number, representing the number of frames per segment, i.e. the time between 2 callbacks to onSegment. If not enough data is received to form a segment, received samples are kept. If not provided, the default is 1000.
  • rapAlignement: boolean, indicating if segments should start with a RAP. If not provided, the default is true.
mp4box.setSegmentOptions(1, sb, { nbSamples: 1000 });

####unsetSegmentOptions(track_id)#### Indicates that the track with the given track_id should not be segmented.

mp4box.unsetSegmentOptions(1);

####onSegment(id, user, buffer)#### Callback called when a segment is ready, according to the options passed in setSegmentOptions. user is the caller of the segmentation, for this track, and buffer is an ArrayBuffer containing the Movie Fragments for this segment.

mp4box.onSegment = function (id, user, buffer) {
	console.log("Received segment on track "+id+" for object "+user+" with a length of "+buffer.byteLength);
}

####initializeSegmentation()#### Indicates that the application is ready to receive segments. Returns an array of objects containing the following properties:

  • id: Number, the track id
  • user: Object, the caller of the segmentation for this track, as given in setSegmentOptions
  • buffer: ArrayBuffer, the initialization segment for this track.
[
  {
	"id":2,
	"buffer":"[ArrayBuffer]",
	"user":"[SourceBuffer]"
  },
  {
	"id":3,
	"buffer":"[ArrayBuffer]",
	"user":"[SourceBuffer]"
  }
]

###Extraction### It is possible to extract the samples of a track, in a similar manner to the segmentation process.

var mp4box = new MP4Box();
mp4box.onReady = function(info) {
  ...
  /* create a texttrack */
  var texttrack = v.addTextTrack("metadata", "Text track for extraction of track "+info.tracks[0].id);
  mp4box.onSamples = function (id, user, samples) {}
  mp4box.setExtractionOptions(info.tracks[0].id, texttrack, options);  
  mp4box.start();
  ...
};

####setExtractionOptions(track_id, user, options)#### Indicates that the track with the given track_id for which samples should be extracted, with the given options. When samples are ready, the callback onSamples is called with the user parameter. The options argument is an object with the following properties:

  • nbSamples: Number, representing the number of samples per callback callt. If not enough data is received to extract the number of samples, the samples received so far are kept. If not provided, the default is 1000.
  • rapAlignement: boolean, indicating if sample arrays should start with a RAP. If not provided, the default is true.
mp4box.setExtractionOptions(1, texttrack, { nbSamples: 1000 });

####unsetExtractionOptions(track_id)#### Indicates that the samples for the track with the given track_id should not be extracted.

mp4box.unsetExtractionOptions(1);

####onSamples(id, user, samples)#### Callback called when a set of samples is ready, according to the options passed in setExtractionOptions. user is the caller of the segmentation, for this track, and samples is an Array of samples.

mp4box.onSamples = function (id, user, samples) {
	console.log("Received "+samples.length+" samples on track "+id+" for object "+user);
}

Each sample has the following structure:

{
	"track_id":4,
	"description": "[Box]",
	"is_rap":true,
	"timescale":1000,
	"dts":0,
	"cts":0,
	"duration":1000,
	"size":41,
	"data": "[ArrayBuffer]"
}

####seek(time, useRap)#### Indicates that the next samples to process (for extraction or segmentation) start at the given time (Number, in seconds) or at the time of the previous Random Access Point (if useRap is true, default is false). Returns the offset in the file of the next bytes to be provided via appendBuffer .

mp4box.seek(10, true);

####releaseUsedSamples(id, sampleNumber)#### Releases the memory allocated for sample data for the given track id, up to (but excluding) the given sample number.

mp4box.releaseUsedSamples(1, 250);

Build

MP4Box.js implements many features (parsing of many types of boxes, writing of boxes, sample processing, on-the-fly fragmentation ...). All these features may not be needed in all applications. In order to allow for a flexible configuration of the features, and to reduce the size of the final library, MP4Box.js is split in many files and uses the Grunt system to compile a set of selected features into a single file. Currently, MP4Box.js comes in two flavors:

  • all: includes all the features
  • simple: allows for parsing of boxes only (no writing, no sample processing) and only of some boxes (not all). You can configure which box you want by adding the file in the Gruntfile.js concat:simple task.

Grunt builds the versions of the single-file library in the dist folder, minified (mp4box.all.min.js,mp4box.simple.min.js) or not (mp4box.all.js,mp4box.simple.js).

Dependencies

In this all version, this code uses DataStream.js, with some modifications for Uint24 and Uint64 types. In the simple version, there are no external dependencies.

Browser Usage

In order to use the MP4Box.js in a browser, use grunt to build a single-file library (see above) or use a pre-built version from the demo page.

<html>
<head>
  <meta charset="utf-8">
  <title>MP4Box.js in the browser</title>
  <script src="mp4box.all.min.js"></script>
</head>
<body>
...
</body>
</html>

Node Usage

MP4Box.js can be used in Node.js. See for example the info.js example.

Contribute

If your favorite box is not parsed by MP4Box, you can easily contribute. Each box parsing code is stored in a separate file whose name is the 4CC of the box type. For instance, the parsing of the ctts box is located in ctts.js.

To contribute to MP4Box.js, simply clone the repository, run npm install and grunt test.