-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (22 loc) · 791 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (22 loc) · 791 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Media Player</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.4/p5.min.js"></script>
<script src="https://unpkg.com/ml5@1/dist/ml5.min.js"></script>
</head>
<body>
<h2>Custom Video Player</h2>
<div class="url-loader">
<input type="text" id="videoURL" placeholder="Paste direct video URL (.mp4, .webm, etc.)">
<button onclick="loadVideo()">Load Video</button>
</div>
<video id="videoPlayer" controls>
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<script src="sketch.js"></script>
</body>
</html>