Questions tagged [assistant]

118 questions
1
vote
0 answers

How to identify Open Mic Issue in Google Assistant App?

Google Home Assistant APP - I have created a google assistant app and submitted for review. The submitted app was rejected stating the MIC is open in few of the Test cases and it should be closed in appropriate time. I am no idea how to make the Mic…
BHUVANESH MOHANKUMAR
  • 2,747
  • 1
  • 33
  • 33
1
vote
1 answer

Change default assist app via intent

After downloading Cortana, it lets you set as the default device assist app. The app does that by firing up the specific settings page via intent. So, what is the specific intent for doing so? I have asked the same question to many forums, but I got…
Praharsh Bhatt
  • 556
  • 5
  • 24
1
vote
1 answer

Can i custom Cortana to tell fairytale and speak slower?

This is first time i'm a father. And I'm a teacher in Kindergarten, too. I know about Cortana a long time, but last day, I updated my laptop to Window 10 to use her, And my child so exciting. But Cortana speak so fast, and they can not understand.…
Thái Trà
  • 73
  • 4
1
vote
0 answers

Python streaming with mplayer

Hey everyone this is my first question so I apologize for any formatting errors/ignorance. I'm working on a personal assistant and I want it to stream youtube videos (audio only). I've managed to get it to find the url of the first video of a…
0
votes
0 answers

Assigning an undefined value to a Rhasspy variable

I use Rhasspy for my voice assistant and I would like to retrieve the summary of a Wikipedia page with Home Assistant with the following sentence: "Search Wikipedia: Leonardo da Vinci" (Leonardo da Vinci being a variable that can take any…
0
votes
0 answers

Google Assistant won't launch my Android Studio app that has been publish

I made an app in android studio in java, I published it to the play store as a production release using google play console. I clicked the box for "Integrate my services with App Actions using Actions on Google" in the Setup->Advanced…
0
votes
0 answers

Google Assistant Voice Actions are working fine in Android 10 but shows toast `App not installed` in above android 10 devices

Google Assistant Voice Actions are working fine in Android 10 but shows toast App not installed in above android 10 devices. I tried all possible solutions mentioned over SOF.
0
votes
0 answers

How would I stop audio that is playing from pydub when using a voice command?

I am trying to stop audio from playing when I say stop, but it does not seem to work. The code I currently have is very rudimentary, and is as follows: import sys import threading import tkinter as tk import pydub import speech_recognition import…
0
votes
0 answers

Create a chatbot like in whatsapp

I am creating a virtual assistant, which I want to be able to use by sending a message to a WhatsApp chat, in which the assistant can read the message, perform its functions and send the response, for this I wanted to use the selenium library. My…
0
votes
0 answers

How to Implement Dual Input Methods for User Interaction

I'm currently working on a project that requires the user to provide input using either a text-based method or a voice-based method. I'm struggling to figure out how to simultaneously run two functions that can identify which input method the user…
iamDyeus
  • 21
  • 8
0
votes
0 answers

Can I create a conversation with google action on my app?

I have been assigned a task to create an Android app integrated with Google Action. As an example, the user could ask Google, "How many hours do I have left to wake up?". The app requires a PIN for access. The user will provide the PIN via voice…
0
votes
0 answers

Widgets shown in Google Assistant - Is there a way to adjust the widget height based on content?

I would like to integrate widgets that correspond to App actions voice commands into the Google Assistant. I've been following the documentation here and everything seems to work fine. I have one issue i cant seem to find a solution for, and that is…
0
votes
0 answers

The speech_recognition is unable to recognize specific words

I am making this speech recognition thing in python and here I want it to recognize some words like Dbot which it understands as deepak,deepa,boss,teddy bear hi which it understands as hai hey which it sometimes understands as hay Now I recently got…
user19239425
0
votes
2 answers

Tkinter window will update after the code has finished

When I run the code the window will appear after the code finished and if I add the main loop at the start the code won't run until I close the window. I want the window to update every time I add a label variable in my code. I searched on multiple…
user19239425
0
votes
1 answer

FileNotFoundError: [Errno 2] No such file or directory: 'credentials.json'

So i am making an assistant in python with the module pyttsx3 and i have this error. Here is the code: from __future__ import print_function import datetime import pickle import os.path from googleapiclient.discovery import build from…