Flash 媒体服务器将新的直播流 (stream.record()) 附加到现有文件(服务器端)
您好,我正在使用stream.record()成功地从客户端记录到服务器。如何将当前流附加到文件(在同一实例中)。
这是我正在尝试的,但不起作用。
if (fileTest.exists == false){
p_stream.record();
} else {
p_stream.record("append");
}
Hello I am using the stream.record() to successfully record from the client on to the server. How can I append the current stream to a file ( in the same instance ).
Here is what i was trying, that does not work.
if (fileTest.exists == false){
p_stream.record();
} else {
p_stream.record("append");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这部分代码不足以说明问题所在,但是如果您只想记录客户端的流,您也可以在客户端执行此操作:
您可以每次使用“append”,因为如果文件不存在, FMS 创建了一个新的。
我希望这会有所帮助。
欢呼
塔马斯·格罗纳斯
This part of code is not enough to tell what is wrong, but if you just want to record the client's stream, you also can do this on client side:
You can use everytime "append", because if the file doesn't exist, FMS creates a new one.
I hope this will be helpful.
Cheers
Tamas Gronas