FMS save h264 video can't last for a long time
hi,
I use FMLE to publish h264 video to FMS , my server side code (main.asc):
application.onPublish = function (client, stream)
{
var streamName = stream.name ;
trace("onPublish stream: "+ streamName);
stream = Stream.get("mp4:"+ streamName +".f4v");
if(stream){
stream.record("append");
stream.play(streamName);
}
};
I can save the H264 stream on the server,but less than 3 minites,the storage stops,How did this happen? please help me ! thank you !
maria
