is-mp4

Check if a Buffer/Uint8Array is a MP4 video

MIT 1 个版本
安装
npm install is-mp4
yarn add is-mp4
pnpm add is-mp4
bun add is-mp4
README

is-mp4 Build Status

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'); // npm install read-chunk
var isMP4 = require('is-mp4');
var buffer = readChunk.sync('bigbuckbunny.mp4', 0, 8);

isMP4(buffer);
//=> true
Browser
var xhr = new XMLHttpRequest();
xhr.open('GET', 'bigbuckbunny.mp4');
xhr.responseType = 'arraybuffer';

xhr.onload = function () {
	isMP4(new Uint8Array(this.response));
	//=> true
};

xhr.send();

API

isMP4(buffer)

Accepts a Buffer (Node.js) or Uint8Array.

It only needs the first 8 bytes.

版本列表
0.1.0 2014-05-07