如何从嵌入的 Flash 视频中获取当前位置?

发布于 2024-10-21 20:43:41 字数 141 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

送舟行 2024-10-28 20:43:41

根据您使用的播放器,您可以根据播放器计时器所在的位置更改页面内容。

例如,在 jwplayer 中,我们获取视频的当前时间:

var player = null;
function playerReady(thePlayer) {
   player = document.getElementById(thePlayer.id);
   player.addModelListener('TIME','playTracker');
}
function playTracker(eventData) {
   alert(eventData);
}

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:

var player = null;
function playerReady(thePlayer) {
   player = document.getElementById(thePlayer.id);
   player.addModelListener('TIME','playTracker');
}
function playTracker(eventData) {
   alert(eventData);
}
怕倦 2024-10-28 20:43:41

您可以在创建 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.

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