Flex3 视频显示到 Flex4 视频显示
我的 Flex3 VideoDisplay 如下所示:
<extensions:SmoothVideo
id="vidWin"
volume="1"
playheadUpdateInterval="10"
playheadUpdate="onPlayheadUpdate();"
bufferTime="0.5"
width="320" height="240"
metadataReceived="onMetaData( event );"/>
我如何更改为 Flex 4 videoDisplay:因为 Flex4 组件没有metadataReceived、playheadUpdateInterval 和 bufferTime 属性。
提前致谢
最好 ~Z~
My Flex3 VideoDisplay is shown below:
<extensions:SmoothVideo
id="vidWin"
volume="1"
playheadUpdateInterval="10"
playheadUpdate="onPlayheadUpdate();"
bufferTime="0.5"
width="320" height="240"
metadataReceived="onMetaData( event );"/>
How do I change is to Flex 4 videoDisplay: as the Flex4 component does not have property for metadataReceived and playheadUpdateInterval and bufferTime.
Thanks in advance
Best
~Z~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Adobe LiveDocs
恐怕根据此,您正在寻找的东西没有等价物。
也许你可以看看 Adobe 的 开源媒体框架 为此,或者继续在 Spark 应用程序中使用
组件,因为 Flex 4 向后兼容。干杯
Take a look at the Adobe LiveDocs
I'm afraid that according to this there is no equivalent for what you are looking for.
Maybe you can have a look at Adobe's Open Source Media Framework for this or just keep on using the
<mx:VideoDisplay>
component within your spark application since flex 4 is backwards compatible.Cheers