forked from AkhilBashetty/bytebusters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaiml.js
25 lines (21 loc) · 898 Bytes
/
aiml.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// script.js
document.getElementById('read-button').addEventListener('click', function() {
const description = document.getElementById('product-description').value.trim();
if (description) {
const speech = new SpeechSynthesisUtterance(description);
speech.lang = 'en-US';
const voices = window.speechSynthesis.getVoices();
const femaleVoice = voices.find(voice => voice.name.includes('Female') || voice.name.includes('Google US English'));
if (femaleVoice) {
speech.voice = femaleVoice;
}
window.speechSynthesis.speak(speech);
} else {
alert("Please enter a product description.");
}
});
// Ensure voices are loaded
window.speechSynthesis.onvoiceschanged = function() {
const readButton = document.getElementById('read-button');
readButton.disabled = false;
};