Questions tagged [google-voice-actions]

44 questions
0
votes
1 answer

Google Action Builder Account Linking with custom authentication in Node js

I'm creating Google Actions Builderaction console and I'm having some doubt in Account Linking. Should be like, need to authenticate account linking based on my database data. Example: While Account Linking if I wanted to pass a email…
0
votes
0 answers

Export Google voice call log to google sheets

I would like to know if there is a way to get my google voice call log to google sheets (received and missed calls) I thought that maybe you can write a script in app script to export it and then make a trigger that should update it every night that…
0
votes
1 answer

Deleting back-end mp3 files on voice assistant

I am building a voice assistant using a tutorial.I am attaching the link below for reference Now in the function def assistant_speaks(output) I have made some changes. Now whenever the assistant speaks, a back-end mp3 file is generated. The files…
0
votes
1 answer

Integrate System Voice Actions as It is in Twitter "Find [xyz] [on] [app_name]". "Search [xyz] on [app_name]" is already working

I want to integrate Google Voice Action to support user queries from Google Assistant like Find xyz on app_name or Find xyz using app_name. I have successfully integrated SEARCH_ACTION which supports user query from Google Assistant like Search xyz…
0
votes
1 answer

Account Linking in DialogFlow happening only once

I am using Account Linking with OAuth - Authorization type in DialogFLow and added it for one of the Intent(lets say Intent name is Secret). When I tested it for first time in test simulator, it did ask for sign-in and sign-in was successful. From…
0
votes
0 answers

Creating Custom Background Voice Intent for Android App

I know this has been a topic covered for 8 years, but I haven't been able to find a recent answer to this question. I'm working on an Android Auto app in my spare time. I'm trying to build out a version of the License Plate Game; when you spot an…
EHorodyski
  • 774
  • 1
  • 8
  • 30
0
votes
1 answer

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

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…
0
votes
1 answer

Google Action, Implicit Account linking DialogFlow webhook

We are planning to support voice action in our application to add user specific action. For example : If user says "Add milk" to google assistant, "milk" is going to added in application db on user account. For that, I have used Account…
0
votes
1 answer

Language for Google Voice Actions queries

I made a demo app in Android with Kotlin and Google Voices Action to allow me to search in an app after a "Ok Google" (SEARCH_ACTION). It works perfectly well when I said "Search this thing in my app name" But doesn't work when I said it in…
0
votes
1 answer

Google voice actions CALL_ACTION

Can Google voice actions be used to make calls using 3rd party VOIP apps? Siri supports this but the documentation on Google isn't clear if this is supported. When I add the intent-filter ACTION_CALL with CALL_PHONE permission set in my app. I still…
vsky
  • 389
  • 1
  • 5
  • 14
0
votes
1 answer

Google Assistant "Add Milk to Shopping list"

I am trying to use Google Voice Assistance in my application. I could see following functionality happen in Google Assistance in almost all the Android mobile. Say for example I am saying "Add milk to shopping list" to Google Assistance and it is…
vijayakumar g
  • 69
  • 1
  • 8
0
votes
1 answer

Error running Google Voice API code

With my basic knowledge on Android, I'm trying to play with the Google voice APIs and followed the example here and to write an app, which would allow me to call a hardcoded number. Unfortunately i'm getting an error saying < identifier > expected,…
0
votes
1 answer

ok google, voice actions, search through app data

every one. I faced to a bit strange problem. My goal is to handle ok Google search query and open an app with this query. Needed queries: Call buddy (opens my application's activity with that contact info and propose to make a call with voip) …
Barterio
  • 670
  • 1
  • 5
  • 18
-1
votes
2 answers

I am doing a voice Assistant with python and got an error can you help me with this?

# Import packages import speech_recognition as sr import os from gtts import gTTS import datetime import warnings import calendar import random import wikipedia # Ignore any warning messages warnings.filterwarnings('ignore') # Record audio and…
user14161771
1 2
3