Hello all,
I'm thinking of writing a small node.js server that streams audio from
FFmpeg over HTTP, for use in an HTML5 player.
Basically, it should execute a command like this
ffmpeg -i /path/to/a/file -f mp3 - 2>/dev/null
and return stdout to the browser.
Is this a suitable use for Node? Can someone help me get a proof of
concept working?
Here's what I have so far:
http://gist.github.com/514882