Skip to content

Instantly share code, notes, and snippets.

@TooTallNate
Created October 24, 2012 17:42
Show Gist options
  • Save TooTallNate/3947591 to your computer and use it in GitHub Desktop.
Save TooTallNate/3947591 to your computer and use it in GitHub Desktop.
node.js command line MP3 player in 9 lines of code!
var fs = require('fs');
var lame = require('lame');
var Speaker = require('speaker');
fs.createReadStream(process.argv[2])
.pipe(new lame.Decoder())
.on('format', function (format) {
this.pipe(new Speaker(format));
});
@sincerefly
Copy link

@eslin You can use https://github.com/jimlawless/cmdmp3 and child_process play short mp3 voice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment