Hi,
1. I am using Flash communication server
2. IN my flash application i call this function from my flash client :
in main.asc :
Client.prototype.recordstream = function(streamName,newstreamName)
{
s = Stream.get(streamName);
if (s){
s.record();
}
};
]
IT saves my stream v.fine.
now the thing is i do not want to save the flv with the same name as stream name is .
right now i send the streamname from my flashclient to that server function., and it just gets the stream, and issue record command.
in this way i do not get seprate files for every brodacast session., i want seprate files for eachsession, ( for that i am supplying newstreamName also), i want to use that parameter as streamname.
My limitation is i cannot change the streamname for everybroadcast. it has to be same due to flash client and other server functions logic.
also, i do not want to append every broadcast in same flv file ( want to avoid it if possible).
kindly suggest.
Thanks