没有控件的 f4v 播放器

发布于 2024-12-01 16:52:44 字数 98 浏览 1 评论 0原文

有谁知道任何 F4V 播放器,但我们可以在哪里禁用或隐藏控件,即这样网络用户就无法暂停/转发/停止视频。

这是一个内部网站,所以我们不想这样做对于最终用户来说很尴尬。

Does anybody know of any F4V players but where we can disable or hide the controls, i.e. so the web users can't pause / forward / stop the videos..

This is for an internal website so it's not like we're trying to be awkward to end users.

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

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

发布评论

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

评论(1

半枫 2024-12-08 16:52:44

我不知道有任何预建的播放器,因为我更喜欢自己开发。但如果您有 Flash Professional,则可以使用 FLVPlayback 组件轻松创建自己的视频播放器。当您将 F4V 视频导入到舞台时,向导将引导您完成组件配置,并且作为该向导的一部分,您可以选择播放器上没有镶边。

默认情况下,它会在 FLVPlayback 设置中硬编码视频文件的 URL。如果您需要它能够播放任何 F4V 文件,只需将以下代码添加到您的文档类中:

myFlvComponent.source = root.loaderInfo.parameters['video'];

然后您可以通过定义一个名为 video 的 flashvar 来控制在嵌入时播放哪些视频,例如通过 SWF 查询字符串:

myPlayer.swf?video=http://example.com/path/to/video.f4v

I don't know of any pre-built players, because I prefer to roll my own. But if you have Flash Professional, you can very easily create your own video player using the FLVPlayback component. When you import an F4V video to stage, a wizard will walk you through configuring the component, and as part of that wizard you can choose to have no chrome on the player.

By default it will hard-code the URL to your video file in the FLVPlayback settings. If you need it to be able to play any F4V file, just add the following code to your document class:

myFlvComponent.source = root.loaderInfo.parameters['video'];

You can then control at embed-time what video to play by defining a flashvar called video, e.g. through the SWF query string:

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