Skip to content

Instantly share code, notes, and snippets.

@Peedron
Peedron / app.js
Created May 22, 2026 11:48
Código de correção de voz
if ('speechSynthesis' in window) {
let utterance = new SpeechSynthesisUtterance(texto);
utterance.lang = 'pt-BR';
utterance.rate = 1.2;
window.speechSynthesis.speak(utterance);
} else {
console.log("Web Speech API não suportada neste navegador.");
}
@Peedron
Peedron / app.js
Created May 22, 2026 11:44
Código de leitura de tela
responsiveVoice.speak(texto, 'Brazilian Portuguese Female', {rate:1.2});