Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

mp4decrypt-buffer

ubuntuegor118GPL-2.01.1.0TypeScript support: included

Native NodeJS module to decrypt media in-memory

mp4, hls, dash, cenc, native

readme

mp4decrypt-buffer

Take CENC media and decrypt it using Bento4's mp4decrypt and Node Buffers. Perfect for small files like DASH segments.

Example

const mp4decrypt = require('mp4decrypt-buffer')

const keys = {
  'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa': 'bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb'
}

const encrypted = fs.readFileSync('enc.m4s')
mp4decrypt.decrypt(encrypted, keys).then(decrypted => {
  fs.writeFileSync('dec.mp4', decrypted)
})

Third-party software

This repo links to Bento4 v1.6.0.640 as a submodule.