<html lang="en">
<body>
<div>
<h2>Text To Speech - <span id="NumChars"></span> Chars</h2>
<div class='Form'>
<textarea name="Text" id="textArea" cols="100" rows="10" >Enter Text Here</textarea>
<div class="Buttons">
<button id="play">Play</button>
<button id="stop">Stop</button>
</div>
</div>
</div>
</body>
</html>
body {
margin: 0;
font-family: system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
font-smoothing: antialiased;
osx-font-smoothing: grayscale;
background: #010110;
color: White;
text-align: Center;
}
textarea{
font-size: 20px;
background-color: #dae6e2;
max-width: 90vw;
}
textarea:focus{
outline: none;
}
.Buttons button{
border: none;
border-radius: 5px;
padding: 20px;
margin: 10px;
font: 20px;
cursor: pointer;
font-weight: 700;
}
.Buttons button:hover{
background: rgb(14, 146, 255);
}
.Buttons button:first-child:hover{
background: rgb(19, 248, 96);
}
.Buttons button:last-child:hover{
background: rgb(252, 27, 27);
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
// This does not handle browser support.
const TextArea = document.getElementById("textArea"),
Play = document.getElementById("play"),
Stop = document.getElementById("stop"),
VoicesCont = document.getElementById("voices"),
Chars = document.getElementById("NumChars");
let speaker = new SpeechSynthesisUtterance();
let synth = window.speechSynthesis;
var text = TextArea.value;
Chars.innerText = text.split(" ").length;
TextArea.addEventListener("change", () => {
text = TextArea.value;
Chars.innerText = text.split(" ").length;
});
// Stop speech stynthesis on page load
synth.cancel();
speaker.lang = "en-US";
speaker.pitch = 1;
speaker.rate = 1.6;
speaker.volume = 1;
let listOfSentences = [];
const manipulateSpeech = (text) => {
let items = 0;
// Create a 2D array
let numberOfWords = Math.ceil(text.split(" ").length / 500);
for (var i = 0; i < numberOfWords; i++) {
listOfSentences[i] = [];
}
for (var x = 0; x < numberOfWords; x++) {
for (var j = 0; j < 500; j++) {
listOfSentences[x][j] = text.split(" ")[items++];
}
// This creates a que of
speaker.text = listOfSentences[x].join(" ");
synth.speak(speaker);
}
};
Play.addEventListener("click", () => {
manipulateSpeech(text);
});
Stop.addEventListener("click", () => {
synth.cancel();
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.