我有一个很小的网络视频可以在Chrome中播放,但不是firefox。这是我的HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>html5 video</title>
</head>
<body>
<video controls="controls">
<source type="video/webm" src="file.webm" type='video/webm; codecs="vp80, vorbis"'/>
Your browser cannot play this
</video>
<a href="file.webm">Download</a>
</body>
</html>
我读到某个地方要让firefox玩webm,.htaccess文件需要附加这个:
AddType video/webm .webm
到目前为止一切都没有。如果我将文件拖到Firefox中,它就可以正常播放。这是根据VLC使用的编解码器
Google/On2's VP8 Video (VP8)
我在这里做错了什么?