Spaces:
Sleeping
Sleeping
Update public/index.html
Browse filesCamera Live LLM Caption Generator Using MoonDream, NodeJS and Docker
- public/index.html +26 -27
public/index.html
CHANGED
|
@@ -1,34 +1,33 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
-
|
|
|
|
|
|
|
| 4 |
<script src="https://cdn.socket.io/4.5.4/socket.io.min.js" integrity="sha384-/KNQL8Nu5gCHLqwqfQjA689Hhoqgi2S84SNUxC3roTe4EhJ9AfLkp8QiQcU8AMzI" crossorigin="anonymous"></script>
|
| 5 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
|
| 6 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script>
|
| 7 |
-
<link rel="stylesheet"
|
| 8 |
-
<link rel="stylesheet"
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
</
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
</div>
|
| 32 |
<script src="./sketch.js"></script>
|
| 33 |
-
|
| 34 |
</html>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<title>Camera Live LLM Caption Generator Using MoonDream, NodeJS and Docker</title>
|
| 6 |
<script src="https://cdn.socket.io/4.5.4/socket.io.min.js" integrity="sha384-/KNQL8Nu5gCHLqwqfQjA689Hhoqgi2S84SNUxC3roTe4EhJ9AfLkp8QiQcU8AMzI" crossorigin="anonymous"></script>
|
| 7 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
|
| 8 |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script>
|
| 9 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" crossorigin="anonymous">
|
| 10 |
+
<link rel="stylesheet" href="style.css">
|
| 11 |
+
</head>
|
| 12 |
+
<body>
|
| 13 |
+
<main id="main-container">
|
| 14 |
+
<header id="header">
|
| 15 |
+
<h2>Camera Live LLM Caption Generator Using MoonDream, NodeJS and Docker</h2>
|
| 16 |
+
<h3>1. Turn on Your Camera - 2. Start Live Vision</h3>
|
| 17 |
+
</header>
|
| 18 |
+
<section id="app-content">
|
| 19 |
+
<aside id="left-section">
|
| 20 |
+
<div id="canvas-area"></div>
|
| 21 |
+
<div id="control-buttons"></div>
|
| 22 |
+
<div id="option-checkboxes"></div>
|
| 23 |
+
</aside>
|
| 24 |
+
<aside id="right-section">
|
| 25 |
+
<div id="instructions"></div>
|
| 26 |
+
<div id="loading-indicator"></div>
|
| 27 |
+
<div id="vision-text"></div>
|
| 28 |
+
</aside>
|
| 29 |
+
</section>
|
| 30 |
+
</main>
|
|
|
|
|
|
|
|
|
|
| 31 |
<script src="./sketch.js"></script>
|
| 32 |
+
</body>
|
| 33 |
</html>
|