Adobe Flash Builder:如何制作一个从一秒开始并在另一秒结束播放嵌入视频的功能?

发布于 2024-08-29 14:04:02 字数 146 浏览 5 评论 0原文

Adobe Flash Builder:如何制作一个从一秒开始并在另一秒结束播放视频的功能?所以我有 MXML 简单视频播放器标签。我需要一些函数来从第二个 X 到第二个 Y 播放该视频并暂停它。这样的事该怎么办呢?

顺便说一句:我们假设文件嵌入到 SWF 中。

Adobe Flash Builder: How to make a function to play video starting from one second and ending in another? So I havein MXML simple video player tag. I need some function to play that video from second X to second Y and pause it. How to do such thing?

BTW: we asume file is embeded into SWF.

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

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

发布评论

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

评论(1

韵柒 2024-09-05 14:04:02

使用FMS?不使用FMS?使用 FMS,您可以传入 netstream.play(file, start,uration);如果不使用 FMS,传统的方法(非常糟糕)是执行类似以下操作:

stream.play(file);
stream.pause();

// wait for the time to be available, and then play

stream.seek(start);
stream.resume();

// listen for the end and then
stop();

如果您有权更改网络服务器,则有更好的插件来处理按需搜索,请查看:

Apache mod_flvx:< a href="http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/" rel="nofollow noreferrer">http://journal.paul.querna.org/articles/2006/ 07/11/mod_flvx/
Nginx h264 模块: http://h264.code- shop.com/trac/wiki/Mod-H264-Streaming-Nginx-Version2

或只是 google mod h264 和/或 mod flv 以及您的网络服务器

using FMS? not using FMS? With FMS you would pass in netstream.play(file, start, duration); If not using FMS, the conventional method (which is pretty awful) is to do something similar to:

stream.play(file);
stream.pause();

// wait for the time to be available, and then play

stream.seek(start);
stream.resume();

// listen for the end and then
stop();

If you have access to change your webserver, there are better plugins to handle on-demand seeking, take a look at:

Apache mod_flvx: http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/
Nginx h264 module: http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Nginx-Version2

or just google mod h264 and/or mod flv and your web server

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