Questions tagged [google-speech-api]

With Google Speech API you can convert speech to text file based or live stream

The https://cloud.google.com/speech/ and is part of https://cloud.google.com/products/ to allow for speech to text conversion.

When using a live stream words are returned almost realtime. This is limited by 1 minute or when paused for ~1 second. When using an asynchronous file the speech to text can be as long as 80 minutes. See https://cloud.google.com/speech/limits

For more see https://cloud.google.com/speech/docs/

837 questions
0
votes
1 answer

how to solve google speech recognition network error

I used to google speech recognition api in annyang.js. Google speech recognition sometimes error occurs "network". How to solve this error? I don't know why this error occurred... My local(korea) time 16:05 before error not occurred.
0
votes
1 answer

Google Speech API returns NULL

Trying to develop a speech to text application using Google's API with below code import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import…
Vinod
  • 376
  • 2
  • 11
  • 34
0
votes
1 answer

Hide tap to speak interface google speech api

I'm trying to develop game that using voice command to access main menu. I want to ask how to hide tap to speak interface from google speech? Because it almost cover all my screen.
0
votes
1 answer

Android Speech Recognition: How to get results with highest confidence score?

I am trying to develop an android application with speech recognition. Please have a look at the below code. @Override public void onPartialResults(Bundle arg0) { Log.i(LOG_TAG, "onPartialResults"); ArrayList matches =…
PeakGen
  • 21,894
  • 86
  • 261
  • 463
0
votes
2 answers

Is it possible to customize Android google speech recognition?

I have few questions to ask related to Google Speech recognition in Android. I have developed an Android application using Google Speech Recognition online service. Now, to further improve it, I need to know answers for the below questions. Can I…
PeakGen
  • 21,894
  • 86
  • 261
  • 463
0
votes
1 answer

How to increase the quotas on the Google speech API

I use Google's speech API but, I have only 50 request per days, I want to know if it's possible to increase this quotas?
0
votes
1 answer

running Google speech locally with no external server?

just not to miss out, is there a way to run Google speech locally without having to go to Google server-- without even an internet connection? Google speech API, Using Google Speech API, Android: Speech Recognition without using google server and…
0
votes
1 answer

Parse Google Speech Kit JSON in iOS

I am having the following JSON response from Google speech API { "result": [ ] }{ "result": [ { "alternative": [ { "transcript": "testing 123" }, …
Yrol
  • 159
  • 4
  • 17
0
votes
1 answer

Parse Google speech kit response in ios

I am using Google api in an iOS app. The response is like this: { "result":[] } { "result":[ { "alternative":[ { "transcript":"hello hello", "confidence":0.94471323 …
Rashad
  • 11,057
  • 4
  • 45
  • 73
-1
votes
1 answer

Is there a way to convert .wav files to .raw in node?

I want to use google speech api to convert audio files to string. But it seems that it only accepts .raw files.
Jerds
  • 21
  • 5
-1
votes
1 answer

Good tutorial for Google Cloud Speech API/Speech recognition on Mac/Python?

I am trying to use speech recognition for building a project, and as of now have had 0 luck doing so. When I try using the sample code provided from google: https://github.com/googleapis/python-speech/blob/master/samples/v1/speech_transcribe_sync.py…
-1
votes
1 answer

Initialize a Python Variable with json data

I have a very simple situation: response = None response = client.recognize(config, audio) if response == None: response = results { alternatives { transcript: "" …
-1
votes
1 answer

How to improve GCP's Speech to Text API results for two persons conversation

I need some library or API which will map a audio and manually transcribed text so that I can get the timestamps for each word. Tried using GCP to transcribe and get the timestamps but its error rate is to too much and the manual work is increased.…
-1
votes
1 answer

Is there any other way of initialization of client library/package without using Google service account file

I have a requirement for using multiple Google service account belongs to different owners in a multitenant architecture. Right now the problem is i have to keep the file path in an environment variable GOOGLE_APPLICATION_CREDENTIALS and client…
-1
votes
1 answer

how can send JSON?

I'm trying to send a JSON to web service using Google Cloud API but keep getting the error below; ERROR == 415 "E/Volley: [293] BasicNetwork.performRequest: Unexpected response code 415 for http://172.17.1.169:8080/api/save" Here the…
1 2 3
55
56