Spaces:
Sleeping
Sleeping
File size: 947 Bytes
5b117de |
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 31 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech to Text Converter</title>
<!-- Link to CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div class="main">
<div class="container">
<h1>Speech to Text</h1>
<div class="button">
<button id="recordButton">Start</button>
<small id="recordStatus">Tap to Record</small>
</div>
<div id="output"></div>
<div id="transcribeContainer" style="display: none;">
<button id="transcribeButton">Transcribe</button>
</div>
<div id="convert_text"></div>
</div>
</div>
<!-- Script JS -->
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>
|