2.0.7 • Published 5 years ago

mutag v2.0.7

Weekly downloads
15
License
MIT
Repository
github
Last release
5 years ago

Mutag

A simple MP3 file tag parser.

npm GitHub package version license

You can use it to get album photo, album name, date, style and other information in MP3 music files.

中文文档

Preview

Demo

Installation

npm install mutag

Usage

In the browser, you should import dist/mutag.min.js and then use window.mutag.

<script src="../dist/mutag.min.js"></script>
<script>
    const mutag = window.mutag;
    // the type of input element is 'file'
    const inputDOM = document.querySelector('.file-input');
    inputDOM.addEventListener('change', e => {
        const file = e.target.files[0];
        mutag.fetch(file).then((tags) => {
            //get all tags
            console.log(tags);
        });
    }, false);

In Node.js, Mutag should be introduced with the require method.

const fs = require('fs');
const mutag = require('mutag');

fs.readFile('path/to/file.mp3', (err, data) => {
  mutag.fetch(data).then((tags) => {
    //get all tags
    console.log(tags);
  });
});

API

mutag.fetch(blob)

Parse the MP3 file and return a Promise object. The parameter is a Blob object. In the browser, the Blob object can be obtained by listening for the onchange event of the input (attribute type="file"), or by listening for the element's ondrop event, or passing Ajax. In Node.js, we can get it with the fs.readFile() API. Return value is a Promise object. if there is no error, you can get all existing MP3 file tags in the callback function resolve with its then method.

mutag.version

Return the version number of Mutag.

Tag description

Mutag can parse ID3v2.3. Some common tags are as follows:

TagDescription
APICAttached picture, mostly in JPG format, few in PNG format
COMMComments, release notes for music files
GEOBGeneral encapsulated object
PRIVPrivate frame, a series of private labels defined by Windows Media
TALBAlbum/Movie/Show title
TCOMComposer
TCONContent type, music style, different numbers represent different styles, here are details.
TIT2Title/songname/content description
TPE1Lead performer(s)/Soloist(s)
TPUBPublisher
TRCKTrack number/Position in set
TYERYear

For more information on tags, please check here.

Browser compatibility

I use some newer APIs such as TextDecoder, Blob, and FileReader, so only modern browsers (new versions of Chrome, Firefox, Edge, etc.) are supported.

License

MIT

2.0.7

5 years ago

2.0.6

5 years ago

2.0.5

6 years ago

2.0.4

6 years ago

2.0.3

7 years ago

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago