1.0.0 • Published 11 years ago

mutagen v1.0.0

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

mutagen.js

npm package wrapping the mutagen library.

mutagen = require('mutagen');
mutage.read('path/to/file.mp3', function(err, tags) {
    if (err) {
        return console.log(err);
    }
    console.log('Artist: ' + tags['artist'][0]);
    console.log('Album: ' + tags['album'][0]);
    console.log('Title: ' + tags['title'][0]);
    console.log('Track Number: ' + tags['tracknumber'][0]);
    console.log('All Tags:');
    console.log(tags);
});
1.0.0

11 years ago

0.0.4

11 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago

0.0.0

12 years ago