我正在尝试让视频在本地播放,但它不起作用。该文件是“wildlife.mp4”,但是,它不播放它只是一个空白的视频框?任何帮助将不胜感激,谢谢。
<!DOCTYPE html>
<html>
<head>
<title>video</title>
</head>
<body>
<video width="320" height="240" controls>
<source src="wildlife.mp4" type="video/mp4">
<source src="wildlife.ogg" type="video/ogg">
Your browser does not support the video tag.
</body>
</html>