开发者

HTML5 video tag doesnt display video

开发者 https://www.devze.com 2023-01-23 11:39 出处:网络
I am trying to play a simple video in chrome 7.0.517.14 the code is as below: <!DOCTYPE HTML> <html>

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 folde开发者_如何学Gor as the movie.mp4.

any ideas?


<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


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):

AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm

If that doesn't work, then it's a video encoding issue.

0

精彩评论

暂无评论...
验证码 换一张
取 消