Hello,

I built a app with Red5 (0.9.0) and I would like to know if the Red5-Server is 
able to record more than one stream at once.
And if it's possible, I would be really glad if someone can tell me how to do 
that :D

Here are my two methods for starting and stopping the record-stuff:


        public void recordShow(IConnection conn, Object[] params) {
                String userID = params[0].toString();
                String iterator = params[1].toString();

                String streamName = VIDEO_RAW + userID + "_" + iterator;
                stream.saveAs(streamName, true);
        }

        public void stopRecordingShow(IConnection conn, Object[] params) {
                String userID = params[0].toString();
                String iterator = params[1].toString();

                String streamName = VIDEO_RAW + userID + "_" + iterator;

                ClientBroadcastStream stream = (ClientBroadcastStream) 
this.getBroadcastStream(conn.getScope(), userID);
                stream.stopRecording();
        }


I hope you can help me =)

 - Dominik

_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org

Reply via email to