remove-id3v1

1.1.1 • Public • Published

Remove ID3v1

Build Status

This library provides a mean to strip a file of its ID3v1 tag, when present.

There are two useful functions:

const Remover = require('remove-id3v1');
const buffer = fs.readFileSync('sample.mp3');

// Both of the functions take either a Buffer or an ArrayBuffer as the argument

// Test whether an id3v1 tag is present in the file
var hasTag = Remover.hasTag(buffer); 

// Strips the tag and return the same file in a new buffer
var newBuffer = Remover.removeTag(buffer);

Readme

Keywords

none

Package Sidebar

Install

npm i remove-id3v1

Weekly Downloads

0

Version

1.1.1

License

AGPL-3.0

Last publish

Collaborators

  • alchen