just / index.html
krishna195's picture
Update index.html
0f90ec3 verified
raw
history blame
530 Bytes
<!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 with Whisper</title>
<script src="https://cdn.jsdelivr.net/npm/@xenova/transformers"></script>
<script defer src="script.js"></script>
</head>
<body>
<h1>Upload an Audio File for Transcription</h1>
<input type="file" id="audioInput" accept="audio/*">
<button onclick="transcribe()">Transcribe</button>
<p id="output"></p>
</body>
</html>