使用 NetStream 加载的视频在 10.0.2.54 中挂起,但在 10.1.xx Flash Player 中播放
再会!
我正在使用 Video 和 Netstream 加载 flv 文件(文档中的简单示例)。在 Flash Player 10.1 上一切正常。在 10.0.2.54 上,NetStream.Play.Start 上的一切都停止。也许这是一些众所周知的错误?
提前致谢!
Good day!
I'm loading flv file using Video and Netstream (trivial example from docs). On Flash player 10.1 everything works fine. On 10.0.2.54 everything stops on NetStream.Play.Start. May be this is some well known bug?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
真正的原因是(我认为)垃圾收集。我的 NetStream 实例在自定义类的方法中被声明为局部变量。我已将其移至类变量并且有效。
这是我在这里找到的:http://www.adobe。 com/support/documentation/en/flashplayer/10/Flash_Player_10_Release_Notes.pdf Flash Player 10.0.2.54 包含在 Flash CS4 Professional 的初始版本中。此版本并未公开部署到网络上。用户应更新到最新版本的 Flash Player 10 以进行内容开发和测试。内容调试器和其他播放器的更新版本发布在 Flash Player 支持中心下载页面上。
The real cause was (I suppose) garbage collection. My NetStream instance was declared as local variable inside custom class' method. I've moved it to be class variable and it works.
Here what I found here: http://www.adobe.com/support/documentation/en/flashplayer/10/Flash_Player_10_Release_Notes.pdf Flash Player 10.0.2.54 is included with initial release of Flash CS4 Professional. This build was not deployed publicly to the Web. Users should update to the newest version of Flash Player 10 for content development and testing. Updated versions of the content debugger and other players are posted on the Flash Player Support Center Downloads page.