Answer the question
In order to leave comments, you need to log in
Why does the FMS server forcibly terminate the recording of the stream to a file?
The script on Adobe Media Server receives a video stream and starts writing it to a file (.mpeg4), in a similar
way:
Client.prototype.RecordStart = function() {
trace("RecordStart");
var ns = Stream.get("mp4:test:f4v");
if (ns) {
ns.record("append", -1, -1);
ns.play("livestream",-1,-1,false);
}
}
Client.prototype.RecordStop = function()
{
trace("RecordStop");
var ns = Stream.get("mp4:test.f4v");
ns.record(false);
ns.play(false);
ns.flush();
}
Answer the question
In order to leave comments, you need to log in
Maybe you don't have a license? Either it expired, or was not applied for some reason.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question