Синтез речи: Как изменить акцент en-US на en-IN с помощью google-speech - PullRequest
0 голосов
/ 28 июня 2019

Я пытался найти ответ на этот вопрос в течение нескольких недель, и мне действительно нужна помощь, поэтому, пожалуйста, ответьте.Я работаю над простым чат-ботом, все работает отлично, но я хочу изменить мужской акцент en-US на мужской en-IN, используя синтез речи.Я попробовал буквально все, и это просто не работает.Я успешно утешил.записал голоса, имеющиеся у меня на компьютере, и, похоже, у меня нет en-IN, но у меня есть en-GB и 20 других голосов.Я попытался использовать распознавание.lang = 'en-IN';но это не сработало, я также пытался использовать двойные кавычки на en-IN и пытался использовать en_IN.Я также пробовал миллиард других вещей, но это не изменит его акцента.Мне нужно сделать это к завтрашнему дню, и я действительно буду признателен всем, кто пытается мне помочь.Кроме того, мой тег сценария является внутренним, а не внешним, расположен в теле.

const btn = document.querySelector('.talk');
const content = document.querySelector('.content');
const greetings = [
				'If you are good im good too.', 
				'Im doin alright', 
				'doing well.'
];
const weather = [
				'Ask the weatherman!', 
				'I recommend checking your phone or the news ' 
				
];
const name = [
	'My name is techwaala', 
	'its techwaala, because I love to code!'
];
const hello = [
	'Why hello! How are you doing today?', 
	'Hey there How are you?'
];
const hru = [
	'Happy to hear that!', 
	'Im so sorry to hear that', 
	'Feel better soon!'
];
const color = [
	'oooh that\'s a hard one, I have a lot of favorites.',
	'I have so many!'
];
const SpeechRecognition = 
	window.SpeechRecognition || window.webkitSpeechRecognition;
const recognition = new SpeechRecognition();
recognition.lang = 'en-IN';
recognition.onstart = function() {
	console.log('voice is activated speak into the mic');
};
const voiceschanged = () => {
  console.log(`Voices #: ${speechSynthesis.getVoices().length}`)
  speechSynthesis.getVoices().forEach(voice => {
    console.log(voice.name, voice.lang)
  })
}
speechSynthesis.onvoiceschanged = voiceschanged
recognition.onresult = function(event) {
	const current = event.resultIndex;
	
	const transcript = event.results[current][0].transcript;
	content.textContent = transcript;
	readOutLoud(transcript);
}

btn.addEventListener('click', () => {
	recognition.start();
});

function readOutLoud(message) {
	
	const speech = new SpeechSynthesisUtterance();
	speech.text = 'I dont know what you said';
	if(message.includes('how are you')) {
		 const finalText = 
		 greetings[Math.floor(Math.random() * greetings.length)];
		 speech.text = finalText;
		
	} 
	if(['hey', 'hi', 'hello', 'hi there', 'hey there', 'hi techwala', 'hey techwala','hello techwala']
	.some(word => message.includes(word))) {
    const finalText = hello[Math.floor(Math.random() * hello.length)];
    speech.text = finalText;
	
}
	if(['whats your name', 'your name']
	.some(word => message.includes(word))) {
    const finalText = name[Math.floor(Math.random() * name.length)];
    speech.text = finalText;
}
if(['how\'s the weather', 'what\'s the weather like', 'is it sunny', 'is it raining', 'is it cloudy', 'is it snowing', 'what\'s the weather']
	.some(word => message.includes(word))) {
    const finalText = weather[Math.floor(Math.random() * weather.length)];
    speech.text = finalText;
}
	if(['I/m doing good', 'doing good', 'I\'m doing well', 'same old', 'I\'m fine', 'I\'m doing fine']
	.some(word => message.includes(word))) {
    const finalText = hru[0];
    speech.text = finalText;
} 
if(['what\'s your favorite color', 'what color do you like', 'favorite color', 'do you have a favorite color']
	.some(word => message.includes(word))) {
    const finalText = color[0];
    speech.text = finalText;
} 
speech.volume = 1;
	speech.rate = 1;
	speech.pitch = 1;
	window.speechSynthesis.speak(speech);
		
} 
<!DOCTYPE html>
<html>
<head>
	<title>Page Title</title>
 </head>
<body>
<button class="talk">Talk</button>
<h3 class="content"></h3>
</body>

</html>
...