Skip to content

Instantly share code, notes, and snippets.

@dtrce
Created September 8, 2011 18:39
Show Gist options
  • Star 63 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
  • Save dtrce/1204243 to your computer and use it in GitHub Desktop.
Save dtrce/1204243 to your computer and use it in GitHub Desktop.
streaming mp3 using nodejs
var http = require('http'),
fileSystem = require('fs'),
path = require('path')
util = require('util');
http.createServer(function(request, response) {
var filePath = '/Users/djavia/_Eminem Cleaning Out My Closet.mp3';
var stat = fileSystem.statSync(filePath);
response.writeHead(200, {
'Content-Type': 'audio/mpeg',
'Content-Length': stat.size
});
var readStream = fileSystem.createReadStream(filePath);
// We replaced all the event handlers with a simple call to util.pump()
util.pump(readStream, response);
})
.listen(2000);
@njoyard
Copy link

njoyard commented Jul 26, 2013

Note that util.pump() is now deprecated. Use readStream.pipe(writeStream) instead (see http://nodejs.org/api/util.html#util_util_pump_readablestream_writablestream_callback)

@allanchriswajega
Copy link

nice stuff

@bigfish
Copy link

bigfish commented Dec 13, 2013

missing comma after require('path')

maybe there's something to be said for the comma first style after all!

@daslicht
Copy link

How would you start the playback at a specific point of time ? please

@daslicht
Copy link

@njoyyard: dou you please like to post an example how this would look like , please?

var http = require('http'),
    fileSystem = require('fs'),
    path = require('path'),
    util = require('util');

http.createServer(function(request, response) {
    var filePath = 'AnsolasChillloop.mp3';
    var stat = fileSystem.statSync(filePath);

    response.writeHead(200, {
        'Content-Type': 'audio/mpeg',
        'Content-Length': stat.size
    });

    var readStream = fileSystem.createReadStream(filePath);

    var reader = getReadableStreamSomehow();
    var writeStream = ???; //???
    readStream.pipe(writeStream);
})
.listen(2000);

@daslicht
Copy link

Okay here we go that seems to work:

var http = require('http'),
    fileSystem = require('fs'),
    path = require('path'),
    util = require('util');

http.createServer(function(request, response) {
    var filePath = 'AnsolasChillloop.mp3';
    var stat = fileSystem.statSync(filePath);

    response.writeHead(200, {
        'Content-Type': 'audio/mpeg',
        'Content-Length': stat.size
    });

    var readStream = fileSystem.createReadStream(filePath);
    readStream.pipe(response);
})
.listen(2000);

Next quest:
How would you start the playback at a specific point of time ?

@riston
Copy link

riston commented Mar 25, 2014

var http = require('http'),
    fs   = require('fs'),
    filePath = '/home/risto/Downloads/oleg.mp3',
    stat = fs.statSync(filePath);

http.createServer(function(request, response) {

    response.writeHead(200, {
        'Content-Type': 'audio/mpeg',
        'Content-Length': stat.size
    });

    // We replaced all the event handlers with a simple call to util.pump()
    fs.createReadStream(filePath).pipe(response);
})
.listen(2000);

@JanHalozan
Copy link

Has anyone managed to start playback at a specific point yet?

@daslicht
Copy link

daslicht commented Mar 7, 2016

Not me

@daslicht
Copy link

@daslicht
Copy link

Ok now I can start a stream at anytime I like , but just by byte offset :/

@vgrafe
Copy link

vgrafe commented May 18, 2016

@daslicht can you share the solution you found to start playback at a specific point?

@edinsoncs
Copy link

good (Y)

@qodesmith
Copy link

@daslicht I'd like to see how you started playback at a specific point as well

Copy link

ghost commented Dec 30, 2016

I'm looking to do the same, is there a way to start the playback at a specific point in time? Any help would be greatly appreciated.

@JhonatanHern
Copy link

It was very useful, I'm working in a personal project and this code was a bless.

@zoecarver
Copy link

thanks! super helpful code

@jconway45
Copy link

jconway45 commented Nov 11, 2018

var http = require('http'),
    url = require('url'),
    fs   = require('fs'),
    filePath = '/home/risto/Downloads/oleg.mp3',
    stat = fs.statSync(filePath);

http.createServer(function(request, response) {
    var queryData = url.parse(request.url, true).query;
    const skip = typeof(queryData.skip) == 'undefined' ? 0 : queryData.skip;
    const startByte = stat.size * skip;

    response.writeHead(200, {
        'Content-Type': 'audio/mpeg',
        'Content-Length': stat.size - startByte
    });

    // We replaced all the event handlers with a simple call to util.pump()
    fs.createReadStream(filePath, {start:startByte}).pipe(response);
})
.listen(2000);

@jconway45
Copy link

This gives you skipping ^^

@image72
Copy link

image72 commented Nov 19, 2018

Video stream with range.
via: https://medium.com/@daspinola/video-stream-with-node-js-and-html5-320b3191a6b6

var http = require('http'),
    url = require('url'),
    fs   = require('fs'),
    filePath = '/home/risto/Downloads/oleg.mp4',
    stat = fs.statSync(filePath);

http.createServer(function(request, response) {        
    const fileSize = stat.size;
    const range = request.headers.range;
    if (range) {
      const parts = range.replace(/bytes=/, "").split("-");
      const start = parseInt(parts[0], 10);
      const end = parts[1] 
        ? parseInt(parts[1], 10)
        : fileSize - 1;
      const chunksize = (end - start) + 1;
      const readStream = fs.createReadStream(filePath, { start, end });
      const head = {
        'Content-Range': `bytes ${start}-${end}/${fileSize}`,
        'Accept-Ranges': 'bytes',
        'Content-Length': chunksize,
        'Content-Type': 'video/mp4',
      };
      response.writeHead(206, head);
      readStream.pipe(response);
    } else {
      const head = {
        'Content-Length': fileSize,
        'Content-Type': 'video/mp4',
      };
      response.writeHead(200, head);
      fs.createReadStream(filePath).pipe(response);
    }
})
.listen(2000);

@dirkk0
Copy link

dirkk0 commented Jul 12, 2022

^^^ works like charm, thanks!

@leruetkins
Copy link

How to make mp3 stream from folder?

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