FF 3.6.13 中的 HTML5 视频问题不想加载视频
我有一个问题需要帮助。我的网页上有一个使用 HTML5 标签完成的视频。由于某种原因,它不想加载视频。 URL 和文件的拼写正确。它正在工作,但是当我向网站添加更多视频(意味着我将它们上传到服务器)并放置包含相同视频的另一个页面时,它不再需要加载。我尝试过使用预加载属性,但这似乎没有帮助。我还把另一页拿下来,视频又恢复了。有什么建议吗?
视频 HTML:
<table class="contentpaneopen">
<tbody>
<tr>
<td class="contentheading" width="100%">Smart Strip on TV</td>
</tr>
</tbody>
</table>
<table class="contentpaneopen">
<tbody>
<tr>
<td>
<video style="border: 1px solid #000000;" preload="preload" controls="controls" width="218px" height="138px">
<source src="Video URL" type="video/mp4"></source>
<source src="Video URL" type="video/ogg"></source>
<source src="Video URL" type="video/webm"></source> Your Browser does not support the HTML5 video tag.</video>
<p>Even Oprah knows the benefits of using a Smart Strip!</p>
</td>
</tr>
</tbody>
</table>
这似乎只发生在 FF 3.6.13 中。如果您想亲自测试并查看,该网站是 http://www.bitsltd.net。
I have an issue that I need help with. I have a video on my webpage that is done using HTML5 tag. For some reason it is not wanting to load the video. The spelling of the URL and file is correct. It was working but when I added more videos to the site (meaning I uploaded them to the server) and put up another page with the same video it is no longer wanting to load. I have tried to use the preload attribute but that doesn't seem to help. I also took the other page down and the videos worked again. Any suggestions?
Video HTML:
<table class="contentpaneopen">
<tbody>
<tr>
<td class="contentheading" width="100%">Smart Strip on TV</td>
</tr>
</tbody>
</table>
<table class="contentpaneopen">
<tbody>
<tr>
<td>
<video style="border: 1px solid #000000;" preload="preload" controls="controls" width="218px" height="138px">
<source src="Video URL" type="video/mp4"></source>
<source src="Video URL" type="video/ogg"></source>
<source src="Video URL" type="video/webm"></source> Your Browser does not support the HTML5 video tag.</video>
<p>Even Oprah knows the benefits of using a Smart Strip!</p>
</td>
</tr>
</tbody>
</table>
This only seems to happen in FF 3.6.13. the website is http://www.bitsltd.net if you would like to test it and see for your self.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将 OGG 源放在 MP4 源之前。
编辑
该网站上的视频在 FF 3.6.13 上运行良好。
Try putting the OGG source before the MP4 one.
edit
The video on that site worked fine for me on FF 3.6.13.