Giter VIP home page Giter VIP logo

mkvdemuxjs's Introduction

This is a demuxer for Matroska (and thus WebM) files, designed to be exactly sufficient for demuxing the WebM files generated by MediaRecorder, and nothing else. As a consequence, it's capable of live-demuxing data fed to it and giving that information back in a semi-useful way, and nothing more.

To use it, create an MkvDemux object, then push ArrayBuffer frames, and call demux to demux them. For instance:

let mkvDemuxer = new mkvdemuxjs.MkvDemux();
let part = null;
mkvDemuxer.push(chunk);
while ((part = mkvDemuxer.demux()) !== null) {
    // Do something with part
}

Since it's intended to stream, you can push partial data and push more data whenever you have it. The demux function will return null when no new data is available.

The parts that demux returns are in various forms. If it encountered a track description, it returns an object like so:

{
    "track": {
        "number": 1,
        "type": "audio",
        "sampleRate": 48000,
        ... etc ...
    }
}

If it encountered a block of frames, it returns an object like so:

{
    "frames": [
        {
            timestamp: (in seconds, floating point),
            track: (track number),
            data: (ArrayBuffer)
        }
    ]
}

For everything else, it returns an internal representation of the EBML tag, which is likely not useful.

mkvdemuxjs's People

Contributors

keepitsimple avatar yahweasel avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.