Spaces:
Sleeping
Sleeping
Create chatgpt.html
Browse files- templates/chatgpt.html +20 -0
templates/chatgpt.html
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Audio Recorder & Transcriber</title>
|
| 7 |
+
<!-- Link to CSS -->
|
| 8 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/chatgpt.css') }}">
|
| 9 |
+
</head>
|
| 10 |
+
<body>
|
| 11 |
+
<div class="container">
|
| 12 |
+
<button id="recordButton" class="record-button">Start Recording</button>
|
| 13 |
+
<audio id="audioPlayback" controls style="display: none;"></audio>
|
| 14 |
+
<button id="transcribeButton" style="display: none;">Transcribe</button>
|
| 15 |
+
<div id="transcriptionResult"></div>
|
| 16 |
+
</div>
|
| 17 |
+
<!-- Script JS -->
|
| 18 |
+
<script src="{{ url_for('static', filename='js/chatgpt.js') }}"></script>
|
| 19 |
+
</body>
|
| 20 |
+
</html>
|