Skip to content

Commit

Permalink
Update app.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Anikribhu authored Jul 19, 2023
1 parent be03613 commit 908866a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function speak(sentence) {
const text_speak = new SpeechSynthesisUtterance(sentence);

text_speak.rate = 1;
text_speak.pitch = 60;
text_speak.pitch = 1;

window.speechSynthesis.speak(text_speak);
}
Expand Down Expand Up @@ -124,4 +124,4 @@ function speakThis(message) {
speech.rate = 1;

window.speechSynthesis.speak(speech);
}
}

0 comments on commit 908866a

Please sign in to comment.