2020-12-01 17:30:08 +08:00
|
|
|
# Video.js 播放 MP4 文件
|
|
|
|
|
|
|
|
```html
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>RTMP</title>
|
2020-12-01 17:59:54 +08:00
|
|
|
<link href="css/video-js.min.css" rel="stylesheet" type="text/css"/>
|
2020-12-01 17:30:08 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<video id="example_video_1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="480" data-setup="{}">
|
|
|
|
<source src="http://10.20.1.238:9090/video/IVIN.mp4" type="video/mp4"/>
|
|
|
|
</video>
|
2020-12-01 17:59:54 +08:00
|
|
|
<script src="js/video.min.js" type="text/javascript"/>
|
2020-12-01 17:30:08 +08:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
```
|