Created
November 13, 2014 11:51
-
-
Save whmountains/7a32f2ac7f1e795a7bf6 to your computer and use it in GitHub Desktop.
problems with node-groove
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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