File size: 3,879 Bytes
3fde5f3 | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ASR & TTS Tool</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
line-height: 1.6;
}
.section {
margin-bottom: 30px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #f9f9f9;
}
.controls {
display: flex;
gap: 20px;
margin-bottom: 15px;
}
.record-controls,
.upload-controls {
display: flex;
gap: 10px;
align-items: center;
}
.file-input {
max-width: 200px;
}
.button {
padding: 10px 20px;
margin: 5px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: white;
cursor: pointer;
transition: background-color 0.3s;
}
.button:hover {
background-color: #0056b3;
}
.button:disabled {
background-color: #cccccc;
cursor: not-allowed;
}
textarea {
width: 100%;
height: 100px;
margin: 10px 0;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
resize: vertical;
}
.status {
margin: 10px 0;
padding: 10px;
border-radius: 5px;
font-size: 14px;
}
.error {
background-color: #ffe6e6;
border: 1px solid #ffcccc;
color: #cc0000;
}
.success {
background-color: #e6ffe6;
border: 1px solid #ccffcc;
color: #006600;
}
#audioPlayer {
width: 100%;
margin: 10px 0;
}
h1,
h2 {
color: #333;
}
h1 {
border-bottom: 2px solid #007bff;
padding-bottom: 10px;
margin-bottom: 30px;
}
</style>
</head>
<body>
<h1>ASR & TTS Tool</h1>
<div class="section">
<h2>Speech Recognition</h2>
<div class="controls">
<div class="record-controls">
<button id="startRecording" class="button">Start Recording</button>
<button id="stopRecording" class="button" disabled>Stop Recording</button>
</div>
<div class="upload-controls">
<input type="file" id="audioFileInput" accept="audio/*"
title="Supported formats: WAV, MP3, M4A, OGG, etc. Files will be converted to 16kHz mono WAV."
class="file-input" />
<button id="uploadAudio" class="button">Upload Audio</button>
</div>
</div>
<div id="asrStatus" class="status"></div>
<textarea id="transcription" placeholder="Transcription will appear here..." readonly></textarea>
</div>
<div class="section">
<h2>Text to Speech</h2>
<textarea id="ttsInput" placeholder="Enter text for TTS..."></textarea>
<button id="generateSpeech" class="button">Generate Speech</button>
<div id="ttsStatus" class="status"></div>
<audio id="audioPlayer" controls></audio>
<button id="downloadAudio" class="button" disabled>Download Audio</button>
</div>
<script src="recorder.js"></script>
<script src="main.js"></script>
</body>
</html> |