8000 GitHub - antoinehng/id3.js: Simple ID3 parser in Javascript
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

antoinehng/id3.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Description

This is a simple ID3 parser library in Javascript. It parses ID3 data packed in an Uint8Array and returns an array of properties.

Example

// id3data is an Uint8Array
var id3obj = new ID3(id3data);
// properties is an array of key/value objects where key is ID3 frame id
var properties = id3obj.getProperties();  
// object contains all properties as one key/value object
var object = id3obj.asObject();

Browser version

A Browser version is available in the dist/ and can be included in a script tag

<script src="id3.min.js"></script>

Building

npm install
npm run build

About

Simple ID3 parser in Javascript

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 88.7%
  • HTML 11.3%
0