0

几个小时后试图解决问题,我想我疯了:S

我的网站上有一个 ogg 声音,它在本地(XAMPP 的 Apache)上运行良好,但它在我的 VPS(Apache、CentOs 和 Kloxo)上根本不起作用,即使在我的 .htaccess 中我有所有的 mimetypes(音频/ ogg ogg)和(应用程序/ogg ogg)。

这是我在本地(工作)中获得的标题:

Request URL:http://127.0.0.1/bass.ogg
Request Method:GET
Status Code:206 Partial Content
Request Headersview source
Accept:*/*
Accept-Charset:ISO-8859-1,utf-8;q=0.7,*;q=0.3
Accept-Encoding:identity;q=1, *;q=0
Accept-Language:en-US,en;q=0.8
Connection:keep-alive
Cookie:PHPSESSID=08e4d19b19720f0a5491c20a7bba20c7
Host:127.0.0.1
Range:bytes=0-
Referer:http://127.0.0.1/
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.160 Safari/537.22
Response Headersview source
Accept-Ranges:bytes
Cache-Control:max-age=2592000
Connection:Keep-Alive
Content-Length:59290
Content-Range:bytes 0-59289/59290
Content-Type:audio/ogg
Date:Fri, 15 Mar 2013 08:58:14 GMT
Expires:Sun, 14 Apr 2013 08:58:14 GMT
Keep-Alive:timeout=5, max=98
Last-Modified:Sat, 09 Mar 2013 14:23:45 GMT
Server:Apache/2.2.14 (Unix) DAV/2 mod_ssl/2.2.14 OpenSSL/0.9.8l PHP/5.3.1 mod_perl/2.0.4 Perl/v5.10.1

这是我在我的 VPS 上得到的标题(不工作):

Request URL:http://www.mysite.com/jazz.ogg
Request Headersview source
Accept-Encoding:identity;q=1, *;q=0
Cache-Control:max-age=0
Range:bytes=0-
Referer:http://www.mysicians.com/
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.160 Safari/537.22

我希望你能帮忙,这样我终于可以睡个好觉了:)谢谢

4

1 回答 1

0

我自己找到了一个解决方案,我希望它会帮助一些人。

和你一样,在我的本地服务器 Wamp 上一切正常。问题出在我的带有 Apache 的 VPS 上。在我的 .htaccess 文件中添加以下行后(第 1 行应该足以用于 ogg 扩展):

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

我仍然在使用 Google chrome 时遇到问题,我可以在 Firefox、Internet Explorer、Safari 中播放声音,但不能在 Chrome 中播放。我搜索了几个小时而没有找到解决方案。它可能与编解码器有关,但我不确定。

最后,我通过调用适当播放声音的距离源来解决该错误。

以不同来源的 html5 为例,以确保声音在所有浏览器中播放:

<audio id="sound">
  <source src="sound.wav" />
  <source src="http://www.another-website.com/sound.mp3" />
  <source src="sound.mp3" />
  <source src="sound.ogg" />
  <embed  src="sound.mp3"></embed>
</audio>
于 2013-09-30T12:07:06.367 回答