Hello,

currently i'm using this "function", which calls ffmpeg, to stream flv data 
to a rtmp server:

serverstream = spawn("ffmpeg", ["-i",         
"udp://127.0.0.1:"+tmpstreamport,
                                "-vcodec",    "copy",
                                "-acodec",    "copy",
                                "-threads",   "0",
                                "-f",         "flv",
                                rtmpstream]);

This is very annoying because sometimes ffmpeg stops to stream the video 
but continues to stream the audio. So i'm looking for a module or fully 
written function to stream flv data to a rtmp server with

data.stdout.pipe(rtmpstream.stdin);

Does anybody knows about a module like this? Could be also a linux tool if 
it works. I already tried rtmpdump but i don't know which parameters i 
should use for this.

Thank you!

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to