Adobe Flash Builder:如何制作一个从一秒开始并在另一秒结束播放嵌入视频的功能?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用FMS?不使用FMS?使用 FMS,您可以传入 netstream.play(file, start,uration);如果不使用 FMS,传统的方法(非常糟糕)是执行类似以下操作:
如果您有权更改网络服务器,则有更好的插件来处理按需搜索,请查看:
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:
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