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