0.1.3 • Published 10 years ago

echoprint-codgen v0.1.3

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Echoprint Codegen

Echoprint Codegen wrapper for node. It requires the echoprint-codegen binary installed in order to work.

Usage

var codegen = require('echoprint-codegen');

codegen('/path/to/file', function (err, data) {
  if (err) return console.error(err);
  console.log(data); // {"metadata":{...}, "code_count": 4098, "code": "eJzFn..."}
});

Options

You can specify several options:

  • file — The path to the file. (required)
  • index — Where to start analyzing the sound (in seconds.) (defaults to 0)
  • offset — How many seconds of the sound should be analyzed. Required if index is set. (defaults to 0)
var opts = {
  file: '/path/to/file',
  index: 10,
  offset: 30
}

codegen(opts, function (err, data) {
  if (err) return console.error(err);
  console.log(data);
});
0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago