is-mp4
Check if a Buffer/Uint8Array is a MP4 video
Install
$ npm install --save is-mp4
$ bower install --save is-mp4
$ component install deepak1556/is-mp4
Usage
Node.js
var readChunk = require('read-chunk');
var isMP4 = require('is-mp4');
var buffer = readChunk.sync('bigbuckbunny.mp4', 0, 8);
isMP4(buffer);
Browser
var xhr = new XMLHttpRequest();
xhr.open('GET', 'bigbuckbunny.mp4');
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
isMP4(new Uint8Array(this.response));
};
xhr.send();
API
isMP4(buffer)
Accepts a Buffer (Node.js) or Uint8Array.
It only needs the first 8 bytes.