google-speech-api Questions
9
Solved
I have followed the Google cloud speech API quickstart of requesting API by using
curl -s -H "Content-Type: application/json" \
-H "Authorization: Bearer "$(gcloud auth applica...
Ectoderm asked 10/2, 2018 at 11:34
16
I am unable to import google.cloud.speech
from google.cloud import speech
I have installed it using :
pip install --upgrade google-cloud-speech -t dir-name
It is giving me below error while i...
Urien asked 6/6, 2017 at 18:39
2
Solved
I'm using for the first time the GCS Speech API for a project to convert a series of audio files to text. Each file has around 60 minutes and is a person talking continuously during the whole time....
Donnetta asked 30/7, 2018 at 20:17
5
Solved
I am working on a product that need to take inputs from user and do certain actions based on it. We have implemented it with a chat box via typing and it is serving our purpose. For the future rele...
Twirl asked 25/3, 2018 at 7:6
5
Solved
I got the following error while trying to install pyaudio using pip3 in ubuntu 16.04:
Collecting pyaudio
Downloading PyAudio-0.2.11.tar.gz
Installing collected packages: pyaudio
Running setup.py...
Berlauda asked 8/2, 2018 at 17:3
2
There seem to be issues with submitting OGG_OPUS into the google speech API, it doesn't return any results and exits however the same sample when converted to LINEAR16 works fine.
Using the standa...
Sad asked 25/6, 2017 at 21:19
3
What level of data privacy is maintained when I used Google speech to text api or google cloud speech solution. I want to know this because I am working on an application which converts audio files...
Raceway asked 15/6, 2017 at 16:52
3
Solved
All of the documentation for SpeechClient that I've found involves either running a command line after downloading the SDK, or awkwardly setting up a "GOOGLE_APPLICATION_CREDENTIALS" environment va...
Crossbill asked 17/3, 2017 at 19:43
3
I was refering to this link where it discuss about the Google Speech engine. It says that I have to get an API Key from google, to use the google speech engine they are discussing. In the link post...
Hege asked 15/2, 2016 at 12:43
2
I have an audio file (30 seconds) and want to convert it into text using google.
I am following this guide :
https://realpython.com/python-speech-recognition/#working-with-audio-files
my code i...
Filia asked 9/8, 2018 at 1:58
1
Solved
I am trying to extend RecognitionService to try out different Speech to Text services other than given by google. In order to check if SpeechRecognizer initializes correctly dummy implementations a...
Shutt asked 15/9, 2021 at 3:19
3
I have searched through all the available docs of Google but I could not find an example of streaming speech recognition on an audio stream in Python.
Currently, I am using Speech Recognition for ...
Gay asked 20/5, 2017 at 16:23
4
I'm using google-cloud-speech api for my project . I'm using pipenv for virtual environment i installed google-cloud-speech api with
pipenv install google-cloud-speech
and
pipenv update go...
Bodycheck asked 28/6, 2019 at 2:34
5
Solved
package blessupboys.speechtest;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.os.Bundle;
import ...
Participation asked 20/1, 2016 at 4:14
1
I want to create a service that should listens for hotword in background such that when i say hello it should invoke an activity, how can i do this, about voiceInteractionService but I have read th...
Scorch asked 3/4, 2017 at 6:24
4
I started using google speech api to transcribe audio.
The audio being transcribed contains many numbers spoken one after the other.
E.g. 273 298
But the transcription comes back 270-3298
My gu...
Slim asked 6/10, 2016 at 10:35
1
I want to stream audio from the web and convert that to text using Python Google-cloud-speech API. I have integrated that in my Django channels code.
For frontend, I have directly copied this code ...
Bay asked 9/5, 2019 at 17:13
2
Solved
I am using Google Speech API in my Django web-app. I have set up a service account for it and am able to make API calls locally. I have pointed the local GOOGLE_APPLICATION_CREDENTIALS environment ...
Pneumonectomy asked 18/2, 2018 at 18:12
1
I'm trying to determine the fluency of a speaker using google speech (to text) API.
So far I have found that the API (betav1) can show the time taken to speak a word ( its starting time and ending ...
Drip asked 25/4, 2018 at 11:10
2
Solved
I am trying to set up a server to receive audio from a client browser using SocketIO, then process it through Google Speech-to-Text, and finally reply back to the client with the text.
Originally ...
Tonisha asked 5/6, 2019 at 3:33
2
When attempting to build project with both Firestore and the Google Speech to Text libraries, I get a "Duplicate class" error. From what I understand, this is due to both libraries introducing prot...
Lockup asked 18/5, 2020 at 5:39
1
I am developing a application that the voice as input and must give the text as the output and it is an iOS app and previously i developed the app through the Siri kit and implemented it.
But probl...
Cowpox asked 20/8, 2018 at 9:42
2
I'm using the below python script for getting predictions from google speech API from live streaming audio input.
The issue is, I need predictions from google speech API for each utterance and then...
Bertle asked 25/7, 2020 at 23:36
2
Solved
I'm trying to use Google's Speech API in Android project. The example project works. I'm having trouble to use it in my own android app.
build.gradle(Module:app) :
apply plugin: 'com.android.appl...
Jehanna asked 4/7, 2017 at 19:45
2
Solved
My code:
with sr.Microphone() as source:
audio = r.listen(source)
try:
print("You said: " + r.recognize_google(audio) + "in french")
except sr.UnknownValueError:
print("Google Speech Recognit...
Otolith asked 9/4, 2018 at 12:3
1 Next >
© 2022 - 2024 — McMap. All rights reserved.