text-to-speech

How to get a list of ALL voices on iOS 9?

為{幸葍}努か 提交于 2020-06-24 08:46:32
问题 The standard way to get a list of 'all' AVSpeechSynthesisVoice objects, is to ask for it: [AVSpeechSynthesisVoice speechVoices] However, this only shows a unique default voice per language-region pair. e.g. for en-US: "Language: en-US, Name: Samantha, Quality: Default", If I look in the Settings app under General → Accessibility → Speech → Voices → English I see that I have 'Siri Female (Enhanced)' selected, but that voice is not selectable from code. The full list is So the big question is:

How to get a list of ALL voices on iOS 9?

限于喜欢 提交于 2020-06-24 08:45:53
问题 The standard way to get a list of 'all' AVSpeechSynthesisVoice objects, is to ask for it: [AVSpeechSynthesisVoice speechVoices] However, this only shows a unique default voice per language-region pair. e.g. for en-US: "Language: en-US, Name: Samantha, Quality: Default", If I look in the Settings app under General → Accessibility → Speech → Voices → English I see that I have 'Siri Female (Enhanced)' selected, but that voice is not selectable from code. The full list is So the big question is:

Speech Synthesis problem with long texts pause mid-speaking

微笑、不失礼 提交于 2020-06-13 06:29:29
问题 Good day. I'm having trouble with inconsistencies of my speech synthesis speaking long texts. I'm trying to make text-to-speech in English and Mandarin. When I specify utterance.lang = 'en-US'; I found out that my article in English is read out until finished. However, when I'm using utterance.lang = 'zh-CN'; my text in English and Mandarin can only read out until 30 words only. I don't know if there's a problem with coding or anything. The article: E. Cyclocarpum Enterolobium cyclocarpum,

How to use Windows System.Speech for TTS in PowerShell 7 (or is there an alternative)

感情迁移 提交于 2020-05-23 10:24:32
问题 I have the same profile.ps1 in both WindowsPowerShell and PowerShell. It includes commands that invoke Windows Text-To-Speech However, these commands fail when run in PowerShell 7. The errors occur when I try to use the $PomrptTTS object I create with the following code: Add-Type -AssemblyName System.speech $PromptTTS = New-Object System.Speech.Synthesis.SpeechSynthesizer In PowerShell 7, any attempt to access or use my $PormptTTS object, produces the following: SetValueInvocationException: .

SpeechSynthesizer doesn't get all installed voices 3

此生再无相见时 提交于 2020-05-15 09:44:45
问题 I have added many voices using "Add language" under region and language. These appear under Text-to-speech in Speech. (I am using Windows 10) I want to use these in my app with the SpeechSynthesizer class in System.Speech.Synthesis . When listing the available voices in my application only a handful of those actually available are shown: static void Main() { SpeechSynthesizer speech = new SpeechSynthesizer(); ReadOnlyCollection<InstalledVoice> voices = speech.GetInstalledVoices(); if (File

I have just started using IBM Cloud. I am trying to get a different output from the IBM Voice depending on my voice input. How can I do this? [closed]

冷暖自知 提交于 2020-05-14 14:23:31
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 days ago . I am trying to design this simple virtual assistant. I am very new to all of this. import json from symbol import parameters from ibm_watson import TextToSpeechV1 from ibm_cloud_sdk_core.authenticators import IAMAuthenticator from ibm_watson import ApiException import speech

I have just started using IBM Cloud. I am trying to get a different output from the IBM Voice depending on my voice input. How can I do this? [closed]

不问归期 提交于 2020-05-14 14:20:00
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 days ago . I am trying to design this simple virtual assistant. I am very new to all of this. import json from symbol import parameters from ibm_watson import TextToSpeechV1 from ibm_cloud_sdk_core.authenticators import IAMAuthenticator from ibm_watson import ApiException import speech

I have just started using IBM Cloud. I am trying to get a different output from the IBM Voice depending on my voice input. How can I do this? [closed]

百般思念 提交于 2020-05-14 14:19:33
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 days ago . I am trying to design this simple virtual assistant. I am very new to all of this. import json from symbol import parameters from ibm_watson import TextToSpeechV1 from ibm_cloud_sdk_core.authenticators import IAMAuthenticator from ibm_watson import ApiException import speech

C# Save text to speech to MP3 file

我怕爱的太早我们不能终老 提交于 2020-04-08 09:10:12
问题 I am wondering if there is a way to save text to speech data to an mp3 or Wav file format to be played back at a later time? SpeechSynthesizer reader = new SpeechSynthesizer(); reader.Rate = (int)-2; reader.Speak("Hello this is an example expression from the computers TTS engine in C-Sharp); I am trying to get that saved externally so I can play it back later. What is the best way to do this? 回答1: There are multiple options such as saving to an existing stream. If you want to create a new WAV

C# Save text to speech to MP3 file

橙三吉。 提交于 2020-04-08 09:04:18
问题 I am wondering if there is a way to save text to speech data to an mp3 or Wav file format to be played back at a later time? SpeechSynthesizer reader = new SpeechSynthesizer(); reader.Rate = (int)-2; reader.Speak("Hello this is an example expression from the computers TTS engine in C-Sharp); I am trying to get that saved externally so I can play it back later. What is the best way to do this? 回答1: There are multiple options such as saving to an existing stream. If you want to create a new WAV