voice

How to connect OK Google voice queries to my app

折月煮酒 提交于 2019-12-21 21:39:09
问题 I want to my app to react to voice queries. I have setup "Ok Google" properly as described here. It is working fine, but it does not seem to be connected to my app. Instead of opening my app it just performs a regular search! 回答1: If you have a searchable Activity as described here then you just need to add these two lines to the <intent-filter /> tag of your Activity in your manifest: <action android:name="com.google.android.gms.actions.SEARCH_ACTION"/> <category android:name="android.intent

How to implement voice & text chat between two iOS device

回眸只為那壹抹淺笑 提交于 2019-12-21 06:32:22
问题 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.... 回答1: 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

How to implement voice & text chat between two iOS device

别说谁变了你拦得住时间么 提交于 2019-12-21 06:31:10
问题 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.... 回答1: 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

How to extract frequency information from an input audio stream (using PortAudio)?

北战南征 提交于 2019-12-20 10:58:12
问题 I want to record sound (voice) using PortAudio (PyAudio) and output the corresponding sound wave on the screen. Hopeless as I am, I am unable to extract the frequency information from the audio stream so that I can draw it in Hz/time form. Here's an example code snippet that records and plays recorded audio for five seconds, in case it helps any: p = pyaudio.PyAudio() chunk = 1024 seconds = 5 stream = p.open(format=pyaudio.paInt16, channels=1, rate=44100, input=True, output=True) for i in

How to extract frequency information from an input audio stream (using PortAudio)?

匆匆过客 提交于 2019-12-20 10:58:08
问题 I want to record sound (voice) using PortAudio (PyAudio) and output the corresponding sound wave on the screen. Hopeless as I am, I am unable to extract the frequency information from the audio stream so that I can draw it in Hz/time form. Here's an example code snippet that records and plays recorded audio for five seconds, in case it helps any: p = pyaudio.PyAudio() chunk = 1024 seconds = 5 stream = p.open(format=pyaudio.paInt16, channels=1, rate=44100, input=True, output=True) for i in

Change voice during phone call android

醉酒当歌 提交于 2019-12-20 09:37:37
问题 I want to make an android application that allow user change the voice during phone call. For example: You are a man, you can change the voice to a woman or robot when talking over phone. It is like a funny prank. I work around android's API and google for some days but still have no idea. Some one told is impossible but I see some app on google play can do: https://play.google.com/store/apps/details?id=com.gridmob.android.funnycall So I think there are some ways to do that. I think about

Compare audio files for “Voice Authentication”

扶醉桌前 提交于 2019-12-19 08:03:19
问题 I'm developing an Iphone app. This application is used for storing user's personal data. For the security purpose we are looking to provide a new feature in our application, user can access the data after logged-in to the application. The issue is we need to provide "voice Authentication" . Means, user can save a word like "hi" as his password by recording it. If he needs to log-in to our application he should speak the word "hi". And the two sounds are compared and if they match then user

Twilio - Outgoing call - play DTMF tones

China☆狼群 提交于 2019-12-18 06:08:12
问题 In my Twilio-base application I create outgoing call via Twilio rest API. When target side responds, I put him to recently created conference. Question is: how can I play certain set of DTMF tones before putting him to conference? The responding side is a certain system which accepts DTMF tones, and I need to play some set of digits. I have read the docs but I did not find way to do this. Is it possible? 回答1: Twilio evangelist here. There are two different ways to do this depending on your

Recognizing multiple peoples voices

僤鯓⒐⒋嵵緔 提交于 2019-12-18 05:21:34
问题 I am looking for an open source voice recognition engine that, instead of responding to spoken words, can determine who is speaking. Does anyone know where I might be able to find something like this? 回答1: You can consider Bob SPEAR https://pypi.python.org/pypi/bob.bio.spear Alize/Mistral http://mistral.univ-avignon.fr/index_en.html GMM speaker identification in matlab https://github.com/codyaray/speaker-recognition Very basic speaker recognition in Java, not really accurate https://github

Recognizing multiple peoples voices

我只是一个虾纸丫 提交于 2019-12-18 05:21:01
问题 I am looking for an open source voice recognition engine that, instead of responding to spoken words, can determine who is speaking. Does anyone know where I might be able to find something like this? 回答1: You can consider Bob SPEAR https://pypi.python.org/pypi/bob.bio.spear Alize/Mistral http://mistral.univ-avignon.fr/index_en.html GMM speaker identification in matlab https://github.com/codyaray/speaker-recognition Very basic speaker recognition in Java, not really accurate https://github