FLEX,VideoDisplay:如何自动加载而不自动运行

发布于 2024-08-29 03:42:51 字数 112 浏览 5 评论 0原文

我正在为我的 Flex 应用程序使用 videoDisplay MXML 组件。

我想自动加载视频(为了显示第一帧)而不自动运行它们。

最简单的方法是什么?

谢谢

I'm using videoDisplay MXML component for my Flex app.

I would like to autoload videos (in order to display the first frame) without automatically run them.

What's the easiest way to do it ?

thanks

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

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

发布评论

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

评论(2

别再吹冷风 2024-09-05 03:42:51
player.addEventListener(VideoEvent.READY, readyHandler);
player.source = test.mp4;
player.load(); // if autoPlay is false

private function readyHandler(event:VideoEvent):void
{
   player.playheadTime = 0; //  triggers a seek to first frame
}
player.addEventListener(VideoEvent.READY, readyHandler);
player.source = test.mp4;
player.load(); // if autoPlay is false

private function readyHandler(event:VideoEvent):void
{
   player.playheadTime = 0; //  triggers a seek to first frame
}
残疾 2024-09-05 03:42:51

有 2 个选项:

a)FLV 电影 - 在 VideoDisplay 中设置 autoPlay="false"

b)Live 流 - 按此顺序调用 player.play();player.stop()

There are 2 options:

a)FLV movie - set autoPlay="false" in VideoDisplay

b)Live stream - call player.play();player.stop() in this order

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