HTML 中的控件属性不允许对视频进行控制

controls attribute in HTML is not allowing controls on the video

您好,我已尝试在 3 个不同的 IDE 中使用控制属性,但它在其中任何一个中都不起作用。我附上了一个显示我的代码的文件。请告诉我我的错误。

<DOCTYPE! html>
<html>
<head>

<title> Started Again </title>

</head>

<body>
     <h1>
This is again I started learning website so that I can benefit others through my knowledge!
     </h1>
     <video width = "700" height = "500" controls>
    <source src = "F:\Steve Jobs Commencement.mp4" type = "video/mp4">
</video>
</body>
</html>

你的代码没问题只是你需要添加正确的路径我已经通过应用 Vedio 验证了你的代码Link这表明代码没问题

<DOCTYPE! html>
<html>
<head>

<title> Started Again </title>

</head>

<body>
     <video width="700" height="500" controls>
  <source src="https://media.istockphoto.com/videos/bluish-mb-concept-with-digital-code-video-id1219346556" type="video/mp4">
</video>
</body>
</html>