Flex 和视频注释

发布于 2024-09-28 02:50:54 字数 101 浏览 4 评论 0原文

我一直在研究如何使用 Flex 或 AIR 对视频进行注释。与 YouTube 上的做法类似。我没有得到太多快乐。想知道是否有人有任何见解?

谢谢

——马特

I have been investigating how to annotate video using Flex or AIR. Similar to how it is being done on YouTube. I am not getting much joy. Wondered if anybody might have any insight?

Thanks

--Matt

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

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

发布评论

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

评论(2

山人契 2024-10-05 02:50:54

这实际上可能比你想象的要简单。

这就是我要做的:

  • 播放视频
  • 当您看到要添加注释的位置时,单击注释按钮或视频以将其停止并添加注释
  • 当您单击该按钮时,您会从视频中获取时间码
  • 保存时间码以及数据库中的注释详细信息
  • 下次播放视频时,从数据库加载注释及其时间码
  • 在视频开始播放之前,使用 Flex 中的 CuePointManager 类向其添加提示点
  • 将事件侦听器添加到视频播放器将监听这些提示点
  • 当提示点命中时,您可以在正确的时间代码等处显示注释

希望这会有所帮助。

哔叽-

This could actually be simpler than you thought.

Here's what I would do:

  • Play the video
  • When you see a spot you want to add an annotation for click the annotation button or the video to stop it and add an annotation
  • When you click that button you grab the timecode from the video
  • Save the timecode and your annotation details in a database
  • The next time you play the video, you load the annotations and their timecodes from the database
  • Before the video start playing you add cuepoints to it using the CuePointManager class in Flex
  • Add an event listener to the video player that will listen for these cuepoints
  • When the cuepoint hits you can show your annotation at the correct time code etc

Hope this helps.

Serge-

月棠 2024-10-05 02:50:54

参考 Youtube AS3 API

马特,您可以在http://code.google.com/apis/ youtube/flash_api_reference.html

您可以从上面的链接查看一些演示示例,以了解如何开始。如果您有兴趣,也可以使用 Javascript API 来完成此操作。

我们使用 Youtube AS3 API 来丰富内容公司的视频,构建它相当简单 - 查看 onion.tv 上的演示

Matt you can refer the Youtube AS3 API's at

http://code.google.com/apis/youtube/flash_api_reference.html

You can check some demo examples from the link above to get an understanding how you can start off. You can also do this with Javascript API's if you are interested.

We have used Youtube AS3 API for enriching videos for content companies and it was fairly straightforward to built it - check demo at onion.tv

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