jquery视频背景插件

发布于 2025-01-08 14:22:55 字数 1841 浏览 0 评论 0 原文

我正在测试 jQuery 视频背景插件,但我在 Firefox 中没有与演示站点相同的行为。

插件演示站点: http://www.georgepaterson.com/sandbox/jquery-html5- video-background-demo/

视频在 Firefox 中播放

我的演示站点: http://willychataigner.com/2020/georgepaterson-jquery-videobackground-8b3535a/

视频无法在 Firefox 中播放,

我注意到当我尝试 3 种不同的视频格式 url 时 在新窗口中

插件演示站点将

播放这 3 种视频格式:

http://www.georgepaterson .com/wp-content/uploads/jquery/jquery-videobackground/video/big-buck-bunny.webm

http://www.georgepaterson.com /wp-content/uploads/jquery/jquery-videobackground/video/big-buck-bunny.ogv

但在我的演示网站上,这两种视频格式无法播放。我得到一个窗口来将视频保存在我的计算机上

http://www.willychataigner.com/2020/georgepaterson-jquery-videobackground-8b3535a/video/big-buck-bunny.webm

http://www.willychataigner.com/2020/georgepaterson-jquery-videobackground-8b3535a/video/big-buck-bunny.ogv

我认为这可能是一个托管问题,但我在 3 个不同的托管服务器上进行了测试,并且出现了同样的问题!

有人能告诉我出了什么问题吗?

谢谢,美好的一天

i'm testing a jQuery video background plugin and i don't have the same behavior in firefox than the demo site.

the plugin demo site:
http://www.georgepaterson.com/sandbox/jquery-html5-video-background-demo/

the video plays in Firefox

my demo site:
http://willychataigner.com/2020/georgepaterson-jquery-videobackground-8b3535a/

the video doesn't play in Firefox

something i have noticed is that when i try the 3 different video format url in a new window

these 3 video format play for the plugin demo site:

http://www.georgepaterson.com/wp-content/uploads/jquery/jquery-videobackground/video/big-buck-bunny.mp4

http://www.georgepaterson.com/wp-content/uploads/jquery/jquery-videobackground/video/big-buck-bunny.webm

http://www.georgepaterson.com/wp-content/uploads/jquery/jquery-videobackground/video/big-buck-bunny.ogv

but on my demo site these 2 video format don't play. i get a window to save the video on my computer

http://www.willychataigner.com/2020/georgepaterson-jquery-videobackground-8b3535a/video/big-buck-bunny.webm

http://www.willychataigner.com/2020/georgepaterson-jquery-videobackground-8b3535a/video/big-buck-bunny.ogv

I thought that this might be a hosting issue but i tested on 3 different hosting server and same issue!

Can someone tell me what's wrong?

Thanks and good day

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

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

发布评论

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

评论(3

灯角 2025-01-15 14:22:55

它很可能是您的内容类型(MIME 类型)。

一些示例是:

mp2 audio/mpeg
mp3 audio/mpeg
mp4 video/mp4
mpe video/mpeg
mpeg    video/mpeg
mpg video/mpeg
mpga    audio/mpeg

在 Apache 中,它位于文件 mime.types 中。只需在文本编辑器中编辑并保存即可。有关 Apache 的更多信息,请参阅:http://httpd.apache.org/docs/2.4/

在 IIS 中,按照以下说明操作:http://technet.microsoft.com/en-us/library/cc725608(v=ws.10).aspx

您需要添加特定于您想要的视频的类型玩。

It is most likely your Content-type (MIME Type).

Some examples are:

mp2 audio/mpeg
mp3 audio/mpeg
mp4 video/mp4
mpe video/mpeg
mpeg    video/mpeg
mpg video/mpeg
mpga    audio/mpeg

In Apache this is in the file mime.types. Just edit it in a text editor and save. For more information on Apache see: http://httpd.apache.org/docs/2.4/

In IIS follow these instructions: http://technet.microsoft.com/en-us/library/cc725608(v=ws.10).aspx

You will need to add the type specific to the video you are wanting to play.

沧桑㈠ 2025-01-15 14:22:55

是的,我认为你是对的,这是你的服务器的问题。
尝试创建一个包含以下内容的 .htaccess 文件:

AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm

不确定该文件是否必须位于根目录或包含 html 文档的文件夹中,请尝试一下。

Yes, I think you're right and it's a problem with your server.
Try to create a .htaccess file with the following content:

AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm

Not sure if the file has to be in the root directory or in the folder with the html-documents, just give it a try.

好菇凉咱不稀罕他 2025-01-15 14:22:55

我有一些更好的 jQuery 视频背景插件,您可以使用它们来创建全屏视频背景。

I got some more good jQuery video background plugins, which you can use for creating fullscreen video backgrounds.

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