voice

What are the BCP-47 voice codes available for iOS 7 AVSpeechSynthesisVoice?

℡╲_俬逩灬. 提交于 2019-12-04 04:02:18
Today I'm very exited about the speech synthesis function is available in iOS7. I want to select the male voice(default in OSX, called alex). I don't know what's the BCP-47 code for him, and BTW how to get the full list of all voice code Here's how to get the BCP-47 codes of the available voices: for (AVSpeechSynthesisVoice *voice in [AVSpeechSynthesisVoice speechVoices]) { NSLog(@"%@", voice.language); } Alex's locale is "English - United States" (en-US), as you can see in the Dictation & Speech control panel on OS X. (Click "Customize..." in the "System Voice" drop down.) iOS 8 added Hebrew,

Voice Detection in C#

穿精又带淫゛_ 提交于 2019-12-04 03:34:00
I'm looking for a simple C# real-time voice detection library. The input should be an audio stream, and the output should be "human voice" or "not a human voice". I have no knowledge in speech recognition or signal processing, and I'll appreciate any kind of assistance. Kevin Junghans Take a look at the answer for " Detecting audio silence in WAV files using C# ". I am assuming the input is a WAV file. If not please provide the format of the audio stream, or if you are intending on taking input from the microphone directly. If you can measure the amount of silence in an audio stream and you

Voice chat in the browser? [closed]

半城伤御伤魂 提交于 2019-12-04 02:16:22
Closed . This question needs to be more focused. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it focuses on one problem only by editing this post . Closed 5 years ago . We are looking to implement a group - voice - chat in the browser using node.js on the server. Is this possible? If you want your solution to be purely JavaScript based on both, server and client side, then you would probably have to wait for the WebRTC , Device API or media capture API and then implement node.js backend for it. Other than that it is, I would say, a

How to implement voice & text chat between two iOS device

守給你的承諾、 提交于 2019-12-03 21:36:45
I want to implement an app by which voice & text chat between two iOS devcices under a network become possible. I dont need voice call facility to any phone like LinPhone or SiPhone. I have studied over them & found too complex for me. Is there any simple SDK to make this possible??? By the way, user identification may be done by e-mail verification.... I think one best way to do it using XMPP Framework. Using XMPP you can send files & text to other persons. Using it you can record voice message & send it across. There are some links for it: GitHub Project Link for XMPP Chat Building a Jabber

How to record voice in a browser?

拟墨画扇 提交于 2019-12-03 17:22:24
问题 I need users to record their voice on a browser and then automatically upload the resulting mp3 to a webserver. I am thinking the user presses a big fat start record/stop record button to do this. This would then save a file on the users hard disk. Then it would be efficiently compressed and automatically ftp'd up to a website. Is it possible to do this using ActiveX or perhaps Java? Or are there libraries available that help? The application is for users who can install software if need be

Grasshopper Voice + Twilio Text

匿名 (未验证) 提交于 2019-12-03 10:24:21
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: My company is currently using Grasshopper as our voice system for receiving and routing inbound customer support calls. It's working pretty well. Except that it's 2014 and people expect to be able to text issues to our toll free customer support number and get responses. Grasshopper doesn't support receiving/forwarding SMS. So I want to use Twilio just for receiving inbound text and Grasshopper for voice on the same number . It seems like a number has to be registered either with Twilio or Grasshopper and can't be shared. Does anyone know if

How to Record Voice in android?

拟墨画扇 提交于 2019-12-03 09:58:25
I am trying to record the voice in android But it will create the .mp3 file on the path (sdcard/filename) But when i run this file it doesen't play because it doesn't record the voice. Here is My code public void onClick(View v) { // TODO Auto-generated method stub switch(v.getId()){ case(R.id.Button01): try { //audio.start(); startRecord(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } case(R.id.Button02): //audio.stop(); stopRecord(); } } private void startRecord() throws IllegalStateException, IOException{ // recorder = new MediaRecorder(); recorder

Streaming voice over tcp

匿名 (未验证) 提交于 2019-12-03 08:52:47
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I've coded an app that streams audio over TCP from client to server but it does not work, i.e. no audible output. Could you check my code tell me whats wrong with it? Client: public void startStreaming () { Thread streamThread = new Thread ( new Runnable () { @Override public void run () { try { int minBufSize = AudioRecord . getMinBufferSize ( sampleRate , channelConfig , audioFormat ); Log . d ( "VD " , "Bufer intioalised " + minBufSize ); short [] buffer = new short [ minBufSize ]; Log . d ( "VS" , "Buffer created of size .c" +

Finding pronunciation correctness

坚强是说给别人听的谎言 提交于 2019-12-03 08:51:49
问题 I need to identify the "quality" of the user's pronunciation with the help of Microsoft speech SDK ( System.Speech.Recognition ). I am using MS Speech Engine - US, so what I actually need is to find out how close the speaker's voice is to the "North American" accent. One way of doing this is by checking how close the user's voice is to the US English phonetic pronunciation. As mentioned in MSDN, it seems like this process is done inside the speech SDK by it self, so I need to get that out.

Fundamental Frequency + Voice Detection in c#

℡╲_俬逩灬. 提交于 2019-12-03 08:45:06
I'm trying to detect voice throught input from the microphone in real-time. I allready receive the input, execute FFT algorithm and have the result in dB. I have a frequency domain, a time domain and a spectogram. How can I get the fundamental frequency? If I get the fundamental frequency can I specify that if the frequency is between certain values, then it is voice that we are talking? Is there any other way to do this with the things that I allready have? Tks in advance There are many different algorithms for frequency estimation , and the right one to use depends on what you're doing. What