mp4-box-encoding

1.4.1 • Public • Published

abstract-encoding

mp4-box-encoding

This module provides encoders and decoders with the abstract encoding interface.

The module exports the interface for a generic box, including all headers and children (for container boxes) Encodings for many leaf (non-container) boxes, without headers, is available keyed by the box type:

var box = require('mp4-box-encoding')
 
var buffer = fs.readFileSync('myvideo.mp4')
// decode any box including headers
// decode the entire moov box and its children
var moov = box.decode(buffer.slice(24, 236989))
 
var moov.mfhd.mtime = new Date() // Change the modification time
 
// now this is an encoding of the modified moov box
var moofBuffer = box.encode(moov)
 
// decode the contents of just the stts box
var stts = box.decode(buffer.slice(609, 625))

These encodings are factored out of mp4-stream.

License

MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.4.1
    2,067
    • latest

Version History

Package Sidebar

Install

npm i mp4-box-encoding

Weekly Downloads

1,898

Version

1.4.1

License

MIT

Unpacked Size

37.2 kB

Total Files

6

Last publish

Collaborators

  • jhiesey
  • mafintosh