如何使用 Flash Media Server 测试本地主机上的流媒体带宽?
我正在尝试在客户端调试我的动作脚本(AS3)代码,该代码与本地主机上的 Flash Media Server 4 一起使用。到目前为止一切似乎都很好。
但是,当我尝试使用其他远程流媒体服务器测试我的播放器时,我注意到由于服务器和播放器之间的带宽传输较低而出现错误。
有没有一种简单的方法可以在本地主机上使用 FMS4 模拟较低带宽?
- 通过配置、application.xml 等?
- 通过编程(main.asc)?
- 两个都 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想跳出框框思考,可以使用 NetLimiter 等应用程序。只需为特定应用程序创建一个过滤器,您就可以将带宽限制到您想要的任何速度(低至字节)。
编辑
此外,通过一些简短的谷歌搜索,我能够找到client.setBandwidthLimit 和 BandwidthCap。
还有一篇关于配置限制带宽的文章(如果有帮助的话)。
If you want to think a little outside of the box, you could use an application such as NetLimiter. Just make a filter for the specific application and you can throttle the bandwidth to whatever speed you'd like (down to bytes).
EDIT
Also, with some brief googling, I was able to find client.setBandwidthLimit and BandwidthCap in the Application.xml file.
There's also an article on Configuring Limiting Bandwidth (if that helps).
根据这篇文章“配置限制带宽”(请参阅上面的链接 - 感谢 Brad Christie),我选择使用服务器端 ActionScript (SSAS) 方式。我认为更简单。
好吧,这是我所做的步骤:
创建一个文件“main.asc”并复制并复制它。粘贴下面的代码。
更多信息:http://www.peachpit.com/articles/article .aspx?p=31217
main.asc
将文件保存在FMS的applications目录下的文件夹下
示例:FMS\application\dyn
启动 FMS 服务器。如果有问题,检查日志文件
示例:FMS\logs_defaultVHost_\dyn_definst_\application.00.log
(可选)更改测试的可变带宽值。我在评论中添加了一些以字节为单位转换的常见互联网连接速度。
In accordance with this article "Configuring Limiting Bandwidth" (see link above - thank Brad Christie) i choose to go with Server-Side ActionScript (SSAS) way. More simple, i think.
Well, here the step what i did :
Make a file "main.asc" et copy & paste the code below.
more info : http://www.peachpit.com/articles/article.aspx?p=31217
main.asc
Save the file under the folder underneath FMS's applications directory
Example : FMS\application\dyn
Start the FMS server. If there is a problem, check the log file
Example : FMS\logs_defaultVHost_\dyn_definst_\application.00.log
(optional) Change the value ofthe variable bandwidth for your test. I put in comment some common internet connection speed converted in bytes.