大家好,任何人都可以解释为什么当我尝试使用Firefox的oog视频时它不起作用。别介意我正在使用的把手。哪个适用于mp4,但有了oog我得到一个错误。
错误
HTTP “Content-Type” of “text/html” is not supported.
代码
<div class="video-cont">
<video class="responsive-video center-align" id="video-player" >
<source src={{video}} type="video/ogg">
</video>
答案 0 :(得分:1)
您的HTTP服务器未配置为正确处理ogg
个文件。当浏览器请求something.ogg
时,服务器正在响应&#34;这是一个HTML文档&#34;然后是somthing.ogg
的内容。
您需要配置HTTP服务器以发送正确的Content-Type HTTP响应标头。