Skip to content

Instantly share code, notes, and snippets.

@whmountains
Created November 13, 2014 11:51
Show Gist options
  • Select an option

  • Save whmountains/7a32f2ac7f1e795a7bf6 to your computer and use it in GitHub Desktop.

Select an option

Save whmountains/7a32f2ac7f1e795a7bf6 to your computer and use it in GitHub Desktop.
problems with node-groove
groove = require('groove');
console.log("opening file (1)");
groove.open('t1.mp3', function(err, file) {
console.log("opened file (1)");
if (err) console.log(err);
var playlist = groove.createPlaylist();
playlist.insert(file);
var printer = groove.createFingerprinter();
printer.attach(file, function() {});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment