modern-mp4
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

modern-mp4

Minzip Version Downloads Issues License

Install

npm i modern-mp4

# peerDependencies
npm i mp4box

Usage

Encode

import { encode } from 'modern-mp4'

const blob = await encode({
  width: 1280,
  height: 720,
  audio: false,
  frames: [
    // data: string | CanvasImageSource | VideoFrame | AudioData
    { data: '/example1.png', duration: 3000 },
    { data: '/example2.png', duration: 3000 },
  ],
})

window.open(URL.createObjectURL(blob))

Decode

import { decode } from 'modern-mp4'

const infoWithFrames = await decode({
  // string | Blob | BufferSource | Array<BufferSource> | readableStream<BufferSource>
  data: './example.mp4',
  audio: false,
  // framerate: 10,
  // onInfo: info => console.log(info),
  // onFrame: frame => { console.log(frame) },
  // onProgress: (current, total) => console.log(`decode frame ${current}/${total}`),
})

console.log(infoWithFrames)

Readme

Keywords

Package Sidebar

Install

npm i modern-mp4

Weekly Downloads

3

Version

0.1.0

License

MIT

Unpacked Size

106 kB

Total Files

20

Last publish

Collaborators

  • wengxiangmin