创建一个简单的 Flv 视频库(使用 flex + AIR)

发布于 2024-12-11 19:29:45 字数 166 浏览 0 评论 0原文

我刚刚从 Flash 编程转向 Flex。

我想创建一个简单的图库,其中加载了本地存储的 FLV 短片。 我知道如何创建文本/图像库,但无法将 VideoDisplay 组件放入列表控件中。

最终结果应该是一个画廊,其中有视频正在播放,而光标位于视频上方。

非常感谢。

I'm just moving from programming in Flash to Flex.

I want to create a simple gallery which is loaded with locally stored FLV short clips.
I know how to create a text/image gallery, but I wasn't able to put the VideoDisplay component in the List control.

The final result should be a gallery with videos playing while the cursor is on top of them.

Thank you very much.

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

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

发布评论

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

评论(1

¢好甜 2024-12-18 19:29:46

解决方案是实现一个 ItemRenderer,它将使用 Loader 加载视频剪辑,然后使用 addChild 将其放入 UIComponent 中,并使用 addElement 添加 UIComponent 到列表中。

我的问题是,我还想完全控制 FLV,包括跳到特定帧的选项,因此我必须将 flv 嵌入到 MovieClip 中,而这只能在 Flash 中实现。因此,我将 flv 嵌入 Flash 中的 MovieClips 中,将它们导出到 SWC 文件,然后在 Flex 中使用它们,再次将它们存储在 UIComponent 中,就像上面的方法一样。

:)

The solution was to implement an ItemRenderer which will load the video clip using a Loader, and then put it inside a UIComponent using addChild, and add the UIComponent using addElement for the list.

My problem was that I also wanted full control over the FLV including the option to skip to a specific frame, so I HAD to embed the flv inside a MovieClip, which was only possible in Flash. so I embedded the flvs inside MovieClips in Flash, exported them to a SWC file, and used them in Flex, storing them inside a UIComponent again like the above method.

:)

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