Skip to content

Instantly share code, notes, and snippets.

@marktellez
Forked from TooTallNate/mp3player.js
Last active July 16, 2018 15:57
Show Gist options
  • Save marktellez/2e5a5f6bf4aab6fb9e564fd07100f0d5 to your computer and use it in GitHub Desktop.
Save marktellez/2e5a5f6bf4aab6fb9e564fd07100f0d5 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("./applaud.mp3").pipe(new lame.Decoder()).on('format', function (format) {
this.pipe(new Speaker(format))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment