0.0.9 • Published 10 years ago

mp3info v0.0.9

Weekly downloads
35
License
-
Repository
github
Last release
10 years ago

node-mp3info Build Status

nodejs native bindings to mp3info that compile and run under MSVC++

Installation

node-mp3info comes bundled with its own copy of mp3info application (v. 8.5a), so there's no need to have mp3info installed on your system.

Unused method curs_addparam was completely removed and some includes were reorganized to provide compatibility with MSVC++ compiler.

Thanks to the following you can compile and install node-mp3info using npm:

npm install mp3info

node-gyp environment setup

Example

Here's an example of how node-mpg123n can be used to start and stop a single song. The path to an mp3 file is passed from command-line.

var mp3info = require('mp3info');

mp3info(process.argv[2], function(err, data) {
    if (err) {
    	console.log("ERROR:", err);
    	return;
    }
	console.log(data);
});

API

Methods

  • mp3info(path, fn);

Projects using mp3info

Maracuyá - Virutal Jukebox

  • contains precompiled version of mp3info
  • embeds nodejs
  • utilizes a simple yet powerful interface
0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago