abhi2400's picture
Upload folder using huggingface_hub
04f98c3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voice Translator</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>Speech Translator</h1>
<div>
<button id="startRecording">Start Recording</button>
<button id="stopRecording">Stop Recording</button>
<button id="speakTranslation">Speak Translation</button>
</div>
<div>
<label for="targetLanguage">Select Target Language:</label>
<select id="targetLanguage"></select>
</div>
<div>
<h3>Status</h3>
<p id="status"></p>
</div>
<div>
<h3>Recognized Text</h3>
<p id="recognizedText"></p>
</div>
<div>
<h3>Translated Text</h3>
<p id="translatedText"></p>
</div>
</body>
</html>