All Projects → chunqiuyiyu → mutag

chunqiuyiyu / mutag

Licence: MIT license
A simple library to get metadata of MP3 files.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to mutag

Id3
Library to read, modify and write ID3 & Lyrics3 tags in MP3 files. Provides an extensible framework for retrieving ID3 information from online services.
Stars: ✭ 27 (+8%)
Mutual labels:  tags, id3
audio-tag-analyzer
Extracts metadata music metadata found in audio files
Stars: ✭ 18 (-28%)
Mutual labels:  tags, id3
Svelte Tags Input
Svelte tags input is a component to use with Svelte and easily enter tags and customize some options
Stars: ✭ 123 (+392%)
Mutual labels:  tags
Astral
Organize Your GitHub Stars With Ease
Stars: ✭ 2,695 (+10680%)
Mutual labels:  tags
Itemsjs
Full text, faceted, (almost) dependency free search engine in javascript
Stars: ✭ 179 (+616%)
Mutual labels:  tags
Craft Seomatic
SEOmatic facilitates modern SEO best practices & implementation for Craft CMS 3. It is a turnkey SEO system that is comprehensive, powerful, and flexible.
Stars: ✭ 135 (+440%)
Mutual labels:  tags
Nova Tags Field
A tags field to use in your Nova apps
Stars: ✭ 204 (+716%)
Mutual labels:  tags
Pytaglib
Python audio tagging library
Stars: ✭ 115 (+360%)
Mutual labels:  tags
Tagsistant
Semantic filesystem for Linux, with relation reasoner, autotagging plugins and a deduplication service
Stars: ✭ 244 (+876%)
Mutual labels:  tags
React Native Tags
Tag input component for React Native
Stars: ✭ 175 (+600%)
Mutual labels:  tags
Webstackpage.github.io
❤️静态响应式网址导航网站 - webstack.cc
Stars: ✭ 3,054 (+12116%)
Mutual labels:  tags
Photorama
"PHOTORAMA" template for Jekyll
Stars: ✭ 168 (+572%)
Mutual labels:  tags
Jstag
Pure Angular Input Tags project
Stars: ✭ 140 (+460%)
Mutual labels:  tags
Supertag
A tag-based filesystem
Stars: ✭ 207 (+728%)
Mutual labels:  tags
Tags
A Tagging package that easily allows you to add tags to your Eloquent models.
Stars: ✭ 134 (+436%)
Mutual labels:  tags
React Native Tag Input
A simple React Native component that creates an input for tags, emails, etc.
Stars: ✭ 217 (+768%)
Mutual labels:  tags
Hypertag
Knowledge Management for Humans using Machine Learning & Tags
Stars: ✭ 116 (+364%)
Mutual labels:  tags
React Selectrix
A beautiful, materialized and flexible React Select control
Stars: ✭ 166 (+564%)
Mutual labels:  tags
Atldotnet
Fully managed, portable and easy-to-use C# library to read and edit audio data and metadata (tags) from various audio formats, playlists and CUE sheets
Stars: ✭ 180 (+620%)
Mutual labels:  tags
decision-trees-for-ml
Building Decision Trees From Scratch In Python
Stars: ✭ 61 (+144%)
Mutual labels:  id3

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:

Tag Description
APIC Attached picture, mostly in JPG format, few in PNG format
COMM Comments, release notes for music files
GEOB General encapsulated object
PRIV Private frame, a series of private labels defined by Windows Media
TALB Album/Movie/Show title
TCOM Composer
TCON Content type, music style, different numbers represent different styles, here are details.
TIT2 Title/songname/content description
TPE1 Lead performer(s)/Soloist(s)
TPUB Publisher
TRCK Track number/Position in set
TYER Year

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].