HTML5 视频标签不显示视频
我正在尝试在 chrome 7.0.517.14 中播放一个简单的视频,代码如下:
<!DOCTYPE HTML>
<html>
<head>
<title>alykhantejani.com</title>
</head>
<body>
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4">
</video>
</body>
</html>
该页面与 movie.mp4 存储在同一文件夹中。
有什么想法吗?
I am trying to play a simple video in chrome 7.0.517.14 the code is as below:
<!DOCTYPE HTML>
<html>
<head>
<title>alykhantejani.com</title>
</head>
<body>
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4">
</video>
</body>
</html>
The page is stored in the same folder as the movie.mp4.
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
<视频控制=“控制”宽度=“320”高度=“240”自动播放=“自动播放”>
尝试一下
<video controls="controls" width="320" height="240" autoplay="autoplay">
<source src="movie.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
Try that
您必须确保您的服务器支持正确的 MIME 类型才能传送视频。创建一个 .htaccess 文件并添加以下行(适用于所有形式的 HTML5 视频):
如果这不起作用,则可能是视频编码问题。
You have to make sure your server supports the proper MIME types to deliver the video. Create an .htaccess file and add the following lines (for all manner of HTML5 video):
If that doesn't work, then it's a video encoding issue.