html 的新手,无法在浏览器中播放视频?
New to html, can't get video to play in browser?
单击 "play" 按钮后,我无法在浏览器中播放我的视频。我将不胜感激帮助。谢谢!
<video poster= "videoposter.jpg" width="40%" height="40%" controls= "controls">
<source src="video/phone.mp4" type='video/mp4'/>
<source src="video/phone.webm" type='video/webm; codecs"vp8, vorbis"' />
<source src="video/phone.ogv" type='video/ogv; codecs="theora, vorbis"'/>
Your browser doesn't support the video element in HTML5.
</video>
可能的原因可能是:
1). File path of video isn't correct. Look at developer console in browser to get this rectified.
2). IIS in Win 7 Pro does not have mp4 in it's mime types. Must add add the mime type. see instructions for adding mime type in link below.
单击 "play" 按钮后,我无法在浏览器中播放我的视频。我将不胜感激帮助。谢谢!
<video poster= "videoposter.jpg" width="40%" height="40%" controls= "controls">
<source src="video/phone.mp4" type='video/mp4'/>
<source src="video/phone.webm" type='video/webm; codecs"vp8, vorbis"' />
<source src="video/phone.ogv" type='video/ogv; codecs="theora, vorbis"'/>
Your browser doesn't support the video element in HTML5.
</video>
可能的原因可能是:
1). File path of video isn't correct. Look at developer console in browser to get this rectified.
2). IIS in Win 7 Pro does not have mp4 in it's mime types. Must add add the mime type. see instructions for adding mime type in link below.