1. The simplest exampleLet's create a basic function that takes the words or phrases we want to say and lets our browser say them. We will make use of the native speechSyntehsis API available on most modern browsers. function speak(sentence) { const utterance = new SpeechSynthesisUtterance(sentence) window.speechSynthesis.speak(utterance) } //test speak('hello world'); Believe it or not, the above code is all you need to make most browsers speak a sentence! Let's look at what's happening here. We created the speak() function which takes a word as a parameter. We create a sound object, which is actually a language request object that contains all the data about what to say and how to say it. 2. Customize speech speed and pitchLet's make a slightly more complex example and try to modify the speed and pitch of the spoken words. /** * @param sentence: the sentence to be said * @param pitch: pitch, value range (0 - 2) default value: 1 * @param rate: speaking rate, value range (0.1 - 10) default value: 1 */ function speak(sentence, pitch, rate) { const utterance = new SpeechSynthesisUtterance(sentence) utterance.rate = rate utterance.pitch = pitch window.speechSynthesis.speak(utterance) } In the above example, we added two parameters, pitch and speaking speed, based on the original function. After we create the sound object, we can modify certain properties directly on the sound object. However, it cannot currently be modified through constructors or setter methods. pitch is a floating point number ranging from 0 to 2, with a default value of 1. The effect of this value may be limited by the engine or sound. rate is a floating point number ranging from 0.1 to 10, and the default value is 1. Now, if we call the above code with a simple sentence, our browser will speak the following with normal speaking speed and tone: speak('Hello world', 1, 1) 3. How to adjust the volumeWe can also adjust the volume just like we adjust the pitch and tempo. Let’s take a quick look at how to do that. /** * @param sentence: the sentence to be said * @param volume: volume, value range (0 - 1) default value: 0.5 */ function speak(sentence, volume) { const utterance = new SpeechSynthesisUtterance(sentence) utterance.volume = volume window.speechSynthesis.speak(utterance) } Modify the previous code, we now pass in the volume parameter. The volume is also a floating point number, ranging from 0 to 1, and the default value is 0.5. Likewise, there is currently no way to set the volume via the constructor or setter methods. Now, we can pass the sentence and volume we want to this function and hear the desired result. 4. Commonly used functionsThe speechSynthesis object has a few functions that can be useful. We can pause, resume, or even cancel the progress of a language. Let’s take a quick look: const utterance = new SpeechSynthesisUtterance('Hello world'); window.speechSynthesis.speak(utterance); // Pause window.speechSynthesis.pause(); // Resume window.speechSynthesis.resume(); // Cancel window.speechSynthesis.cancel(); The above code will say the sentence we want, and the speech will be paused, resumed, and finally cancelled. You can also try the above code in your browser. We can also directly determine whether the audio is paused through the paused property on the speechSynthesis object, which will return a Boolean value to indicate whether the audio is paused. window.speechSynthesis.paused // Boolean What if there are still some backlog of sentences waiting to be read? Well, there is also a property pending, which is used to check if there is any speech waiting to be spoken. It returns a Boolean value indicating whether there is speech pending for processing. const utterThis = new SpeechSynthesisUtterance('Hello world'); const utterThat = new SpeechSynthesisUtterance('Hello JavaScript'); window.speechSynthesis.speak(utterThis); window.speechSynthesis.speak(utterThat); window.speechSynthesis.pending; When the above code is executed, two voice clips will be queued and they will be played in order. When we get the pending property, this value will return true, because there is a second voice waiting to be played. Note: If you only have one voice, the pending property will always return false because there is no voice queued to play. 5. Event MonitoringWhen we use the SpeechSynthesisUtteranceapi, we can listen to several useful events. Let’s take a look at it together: const utterance = new SpeechSynthesisUtterance('Hello world') utterance.addEventListener('start', () => console.log('Utterance start')) utterance.addEventListener('pause', () => console.log('Utterance paused')) utterance.addEventListener('resume', () => console.log('Utterance resumed')) utterance.addEventListener('end', () => console.log('Utterance end')) window.speechSynthesis.speak(utterance) 6. ConclusionHopefully this article is enough to get you started with synthesized speech in your browser! You should now know how to start, stop, and pause speech, as well as adjust the rate, pitch, and volume of speech. The above is the details of how to use JavaScript to make your browser speak. For more information about JavaScript, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
>>: Detailed explanation of Mysql communication protocol
Concept introduction : 1. px (pixel): It is a vir...
Table of contents background Main content 1. Comp...
How to allow remote connection in MySql To achiev...
Table of contents 1. Enter the network card confi...
Install boost There are many ways to call C/C++ f...
"Tik Tok" is also very popular and is s...
Table of contents 1. Resource download 2. Unzip t...
1. Overall architecture diagram Compared to other...
Use JS to zoom in and out when the mouse is on th...
Table of contents 1. Use the withRouter component...
1. Log in to VPN using IE browser 2. Remote login...
I've been learning Docker recently, and I oft...
Table of contents 1. Problem Description 2. Probl...
Due to the company's business requirements, t...
1. Construction components 1. A form must contain...