google-voice

Is there a Google Voice API? [closed]

风流意气都作罢 提交于 2019-12-17 07:00:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Is there an API (officially or unofficially) for Google Voice? I would like to have an API to work with voicemails, send/receive SMS messages, initiate calls, etc. What is the Android client using? Something internal? Has anyone documented it? 回答1: No, there is no API for Google Voice as of 2019. "pygooglevoice"

Google assistant - Identify audio clip and take an action based on that

元气小坏坏 提交于 2019-12-11 19:04:04
问题 I'm trying to build a Google Assistant app to identify an audio clip that's playing from another device (TV, Radio, etc..) and take an action based on that Audio clip to play another audio clip, YouTube video or open a website in a browser. It will be great to know the possibility of implementing this feature and if there is any available Google resource/ Article that I can use. Thanks, 回答1: I'm sorry to inform you that as of now, you do not get access to the raw recordings of interactions

Can I use Amazon LEX with Google assistant?

青春壹個敷衍的年華 提交于 2019-12-11 06:32:35
问题 I have made a Chat-Bot using Amazon's LEX. Is there any way I can use that application using Google's Voice Assistant in my phone? If not why? 回答1: Yes it is possible to use Google's voice assistant application with Amazon Lex as NLP engine. Go to https://developers.google.com/actions/ and log in Go to Actions Console using button on top left corner Create an Amaaon Lex agent In your actions's SDK use Lex's runtime library to postContent or postText function to call Lex and get intent name

Android Google Voice Search changed language automatically sometimes

耗尽温柔 提交于 2019-12-11 05:37:41
问题 I have successfully added Google Voice Search Activity using following code: Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "en-US"); try { startActivityForResult(intent, 1); } catch (ActivityNotFoundException a) { Toast t = Toast.makeText(context, "Oops! Your device doesn't support Speech to Text",Toast.LENGTH_SHORT); t.show(); } I searched in "en-US" and its worked perfectly but sometimes it is searching like

Activity window on standard call screen - to Enable buttons

霸气de小男生 提交于 2019-12-10 17:55:20
问题 I would like to add a small window (Popup) on call screen activity. Google voice and worldcallplaceandtime are both adding the same window during a call. The problem is that when I open a new activity on the top part of the screen, the rest of the buttons are disabled (End call, Mute etc). The only option to click the end call button is only when I close the new activity that was added. Can anyone please tell me how can I add a small window one the screen and still be able to use the call

What is the URL to make a Google Voice call using the direct access number?

房东的猫 提交于 2019-12-10 15:46:15
问题 I am trying to write a Google Voice app and was wondering if anyone knew the url and post parameters to make a call using the direct access number instead of the ring-back. 回答1: I did not test it, but check this api: http://code.google.com/p/google-voice-java/ Specially, the voice.java at line 711 , which is the method: public String call(String originNumber, String destinationNumber, String phoneType) throws IOException { In line 737 they use: URL callURL = new URL("https://www.google.com

What is the full google voice url for placing calls on iOS?

落花浮王杯 提交于 2019-12-08 07:59:43
问题 I know that a phone number formatted googlevoice:4155551234 will launch the google voice app on iPhone/iPad. However, it looks like this will not initiate a phone call from the number passed in. Skype urls look like skype://4155551234?call, so naturally I tried googlevoice:4155551234?call googlevoice:4155551234?dial but to no avail. Does anyone know which arguments should follow the phone number? Or if the url should have a different format? 回答1: There isn't one. See this discussion. 来源:

python: pygooglevoice unable to login

随声附和 提交于 2019-12-08 04:02:30
问题 I'm trying to use pygooglevoice to send an SMS, but I can't get get authentication to work properly. I'm using this as an example: https://github.com/jluellen/pygooglevoice/blob/master/examples/sms.py And this is what I get: from googlevoice import Voice from googlevoice.util import input voice = Voice() user_name = "myemail" user_pass = "somepassword" voice.login(user_name, user_pass) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python2.7/dist

Sending an SMS using Google Voice

Deadly 提交于 2019-12-08 01:32:18
问题 I have an app where I need to be able to send SMS messages. I have the code to send them directly, but I would like to give the option to use Google Voice to users who don't have messaging plans. Does anyone know how to do this? I can't seem to find the way. Here is the way I am doing it now: StringBuffer buffer = new StringBuffer(); buffer.append("GEOC "); buffer.append(mLogType.getSelectedItemPosition() == 0 ? "@" : "x"); buffer.append(mGeocache.getWaypoint()).append(" "); if(mLogEdit

Use google “Speak Now” in C#

ε祈祈猫儿з 提交于 2019-12-07 03:08:12
问题 Recently google announced a feature in Chrome browser to search text or translate texts using microphone. http://www.seroundtable.com/google-search-speak-now-13346.html I'd like to develop a C# desktop application to send voice to google and get the results back. How can it be done? 回答1: Google does not have a speech recognition API for desktops. They only have a speech recognition API for Android developers. However, you can download Microsoft's speech recognition API here: http://msdn