File size: 705 Bytes
0f90ec3
 
 
 
 
7d66de5
0f90ec3
 
 
 
7d66de5
8ec810b
7d66de5
 
8ec810b
ef18fab
0f90ec3
7d66de5
0f90ec3
c4f21d4
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>Speech-to-Text Debug</title>
    <script src="https://cdn.jsdelivr.net/npm/@xenova/transformers"></script>
    <script defer src="script.js"></script>
</head>
<body>
    <h1>Speech-to-Text (Debug Mode)</h1>
    <p id="modelStatus">⏳ Loading model...</p>
    <button id="testModel" disabled>Test Model</button>
    <button id="recordButton" disabled>πŸ”„ Model Loading...</button>
    <p id="status">Waiting for model...</p>
    <p><strong>Transcription:</strong></p>
    <p id="output"></p>
    <p id="error" style="color: red;"></p>
</body>
</html>