播放flash media srver中路径所附的录制文件

发布于 2024-11-09 14:03:08 字数 253 浏览 0 评论 0原文

在 adobe flash media server 4.0 中,如何以编程方式将路径附加到客户端播放的录制文件。例如,

在客户端,

mynetStream.play (“myrecordedfile.flv”)

如何将播放重定向到 c:\my_dynamic_file_path 下的文件。

请注意,文件路径可以根据客户端的登录名进行更改。

谢谢,

in adobe flash media server 4.0, how can I programmatically attached the path to the recorded file which is played by a client. e.g.,

in client side,

mynetStream.play
("myrecordedfile.flv")

how to redirect the playing to the file under e.g., c:\my_dynamic_file_path.

note that, the file path is changable based on the client's login name.

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

月竹挽风 2024-11-16 14:03:08

我不确定以下是否是一个好的解决方案,

在客户端:

mynetStream.play
("myrecordedfile.flv");

netconn.call ("playStream", null, "myrecordedfile.flv", username);

在闪存媒体服务器端,

Client.prototype.playStream = function
(streamname, username) {

   var s = Stream.get (streamname);   
var file = username + "\" +
streamname;    s.play (file, 0, -1); 
}

I am not sure if the below is a good solution or not,

in client side:

mynetStream.play
("myrecordedfile.flv");

netconn.call ("playStream", null, "myrecordedfile.flv", username);

in flash media server side,

Client.prototype.playStream = function
(streamname, username) {

   var s = Stream.get (streamname);   
var file = username + "\" +
streamname;    s.play (file, 0, -1); 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文