22 lines
521 B
HTML
Executable File
22 lines
521 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
<link href="https://unpkg.com/video.js/dist/video-js.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
|
|
<video id=example-video width=600 height=300 class="video-js vjs-default-skin" controls>
|
|
<source
|
|
src="http://ptrl9u2l4.bkt.clouddn.com/demos"
|
|
type="application/x-mpegURL">
|
|
</video>
|
|
<script src="https://unpkg.com/video.js/dist/video.js"></script>
|
|
|
|
<script>
|
|
var player = videojs('example-video');
|
|
player.play();
|
|
</script>
|
|
</body>
|
|
</html> |