音频html标签无法快进或快退控制

时间:2014-12-18 16:54:48

标签: html audio header fast-forward rewind

我使用音频html标记加载来自我的上传服务器的音频,而且我不知道我的音频无法循环,快进或快退的原因像往常一样控制。

我的音频:http://vmeet.world-telephone.com/m2/x.php?f=1682667950&x=1

标题:

Accenpt-Ranges:bytes
Connection:Keep-Alive
Content-Length:4707216
Content-Range:bytes 0-4707215/4707216
Content-Type:audio/mpeg
Date:Thu, 18 Dec 2014 16:45:24 GMT
Keep-Alive:timeout=5, max=100
Server:Apache/2.4.10 (Win32) PHP/5.3.29 OpenSSL/1.0.1j
X-Powered-By:PHP/5.3.29

请告诉我如何修复它,非常感谢

1 个答案:

答案 0 :(得分:1)

配置服务器时的拼写错误。将Accenpt-Ranges更改为Accept-Ranges

Header set Accept-Ranges bytes适用于mod_headers中的Apache 2.x httpd.conf

对于Lighttpd,

server.range-requests = "enable"

Status Code应该更新为206

http://i.stack.imgur.com/9ms1S.png