-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideoplayer.php
More file actions
31 lines (28 loc) · 897 Bytes
/
videoplayer.php
File metadata and controls
31 lines (28 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<head>
<link href="https://vjs.zencdn.net/7.8.3/video-js.css" rel="stylesheet" />
<!-- If you'd like to support IE8 (for Video.js versions prior to v7) -->
<script src="https://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script>
</head>
<body>
<video
id="my-video"
class="video-js"
controls
preload="auto"
volume=1
width="640"
height="264"
poster="http://socialcodia.net/SocialApiFriendsSystem/public/uploads/thumbnail/5f0791ef7a477.jpg"
data-setup="{}"
>
<source src="src/vid/likh.mp4" type="video/mp4" />\
<p class="vjs-no-js">
To view this video please enable JavaScript, and consider upgrading to a
web browser that
<a href="https://videojs.com/html5-video-support/" target="_blank"
>supports HTML5 video</a
>
</p>
</video>
<script src="https://vjs.zencdn.net/7.8.3/video.js"></script>
</body>