btmdave / mediaserver

Media streaming module for JXcore and Node.JS http(s) server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Media & static asset streaming module for JXcore and Node.JS http(s) server

Compatibility

(Tested on IE 6+, FF, Chrome, Mobile Safari - IE - Chrome)

Install

npm install mediaserver

or

jx install mediaserver

Usage

var http = require('http'),
    ms = require('mediaserver');

http.createServer(function (req, res) {

    ms.pipe(req, res, "music.mp3");

}).listen(1337, '127.0.0.1');

from the client side

<audio controls>
    <source src="http://127.0.0.1:1337/" type="audio/mpeg">
    Your browser does not support the audio element.
</audio>

Feel free to contribute

LICENSE MIT

About

Media streaming module for JXcore and Node.JS http(s) server


Languages

Language:JavaScript 100.0%