Record Live Stream
Hi,
I'm using the following code to record a live stream (server side code):
application.onPublish = function (p_c, p_stream)
{
trace("onPublish stream: "+p_stream.name);
p_stream.record();
};
I have two questions:
1) can I change the name of the FLV I am recording at the serve side? For example, if the stream is Stream_A, and I want to create a StreamFile.Flv.
2) How can I add a timestamp to the metadata of the video when the onPublish function is called? I need to do it at the server side of my application.
Thanks
