├── README.md └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # Speech-to-Text 2 | The HTML and JavaScript code provided implements a simple yet effective speech-to-text (STT) web application. Here's a breakdown of its content and functionality: 3 | 4 | Overview: 5 | 6 | Purpose: This page enables users to speak into their device, and the spoken words are converted into text using the browser's SpeechRecognition API. 7 | Design: The application features a clean and responsive layout with intuitive controls for starting and stopping speech recognition. 8 | 9 | Key Features: 10 | 11 | Real-Time Transcription: A text area displays the transcribed speech in real-time, with support for both interim and final results. 12 | Start Recognition Button: A button that activates the speech recognition process, enabling the user to speak and see their words appear as text. 13 | Stop Recognition Button: This button halts the ongoing speech recognition process. 14 | Language Selection: Users can choose their preferred language (e.g., English, Tamil, Hindi) via a dropdown menu for multilingual support. 15 | Styling: A visually appealing design with soft gradients, rounded elements, and clear, accessible controls enhances the user experience. 16 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |