Flash 媒体服务器将新的直播流 (stream.record()) 附加到现有文件(服务器端)

发布于 2024-10-29 08:55:46 字数 210 浏览 2 评论 0原文

您好,我正在使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黑凤梨 2024-11-05 08:55:46

这部分代码不足以说明问题所在,但是如果您只想记录客户端的流,您也可以在客户端执行此操作:

    var ns : NetStream = new NetStream( nc );
        ns.attachCamera( cam );
        ns.publish( "streamName", "append" );

您可以每次使用“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:

    var ns : NetStream = new NetStream( nc );
        ns.attachCamera( cam );
        ns.publish( "streamName", "append" );

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文