如何从嵌入的 Flash 视频中获取当前位置?
我正在使用 SWFObject 嵌入 Flash 视频。有没有办法在用户点击嵌入视频的某些特定时间标记时立即收到通知?即从浏览器 Flash 插件收到通知?
我的目标是更改嵌入视频特定时间的页面内容。
谢谢,
塞巴斯蒂安
I'm using SWFObject to embed Flash Videos. Is there a way to get notified as soon as the user hits some specific time marks of the embedded video? I.e. get a notification from the Browsers Flash Plugin?
My goal is to change the page content at specific times of the embedded video.
Thanks,
Sebastian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据您使用的播放器,您可以根据播放器计时器所在的位置更改页面内容。
例如,在 jwplayer 中,我们获取视频的当前时间:
Depending on what player you are using, you could change the the page content based on what point the player's timer is at.
For instance, in the jwplayer, here we get the current time of the video:
您可以在创建 flv 时向影片添加提示点(或在运行时使用 addASCuePoint),当到达提示点时,您可以使用ExternalInterface 调用 javascript 函数。
You could add cuepoints to the movie when you create the flv (or at runtime using addASCuePoint), when the cue points are reached you could then use ExternalInterface to call a javascript function.