1.1.3 • Published 7 years ago

is-mp3 v1.1.3

Weekly downloads
1,006
License
MIT
Repository
github
Last release
7 years ago

is-mp3 Build Status

Check if a Buffer/Uint8Array is a MP3 file.

Install

$ npm install --save is-mp3
$ bower install --save is-mp3
$ component install hemanth/is-mp3

Usage

Node.js
var readChunk = require('read-chunk'); // npm install read-chunk
var isMp3 = require('is-mp3');
var buffer = readChunk('meow.mp3', 0, 3);

isMp3(buffer);
//=> true
Browser
var xhr = new XMLHttpRequest();
xhr.open('GET', 'meow.mp3');
xhr.responseType = 'arraybuffer';

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

xhr.send();

API

isMp3(buffer)

Accepts a Buffer (Node.js) or Uint8Array.

It only needs the first 4 bytes.

License

MIT © Hemanth.HM

1.1.3

7 years ago

1.1.2

8 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.1

10 years ago

0.1.0

10 years ago