TextTalker is a simple text-to-speech (TTS) web application built using HTML, CSS, and JavaScript. It utilizes the SpeechSynthesis API to convert user-inputted text into speech. Users can enter any text, choose a voice and listen to the generated speech. This project demonstrates the power of browser-based TTS capabilities while providing an interactive and customizable experience.
- Light/dark mode toggle
- Live previews
- Fullscreen mode
- Cross platform
- Responsive Design
Javascript, HTML, CSS | API Integration | Gen-AI Concept.
function speakText() {
let text = document.getElementById("text").value;
let speech = new SpeechSynthesisUtterance(text);
window.speechSynthesis.speak(speech);
}VISIT HERE : https://ismail-dcode.github.io/Text-Talker_(TTP)-AI
