Skip to content

alchen/Remove-ID3v1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published