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

Android : Google Speech Streaming APi

Hey i need a Help on google Streaming Cloud Speech Api if someone use that things. i am getting fast response when i have good network connectivity but in bad network it is not working fine.Sometimes it takes time to give error(Error:low Streaming)…
-1
votes
1 answer

How to prepare audio files (wav or mp3) for Google speech recognition api in c#?

String jsonRequest = "{\"config\": {\"languageCode\":\"en-US\"},\"audio\": {\"content\": \"" + base64Content+ "\"}}"; String str = ""; var speech = SpeechClient.Create(); var response = …
Mean Coder
  • 304
  • 1
  • 12
-1
votes
1 answer

Error while deploying firebase cloud function

I am trying to deploy my functions but that shows an error. I am trying to use cloud speech api & cloud translation api with firebase cloud function. const functions = require('firebase-functions'); const Speech =…
-2
votes
1 answer

Cloud Speech-to-Text API Detecting language spoken automatically

I would like to activate the function that automatically detects the spoken language. The development language uses C#, but there was no sample code on the website. Please let me know if you know how to write. Detecting language spoken…
-2
votes
1 answer

Hot To integrate MS Web-Chat component with Google-Speech-To-Text API?

As per Microsoft docs, we can configure Web-Chat component to use our own custom speech recognition as below const speechOptions = { speechRecognizer: new YourOwnSpeechRecognizer(), speechSynthesizer: new YourOwnSpeechSynthesizer() }; How…
-2
votes
1 answer

Processing a live video from Youtube for speech to text

I'd like to apply the Google Cloud Speech to Text API to a Youtube live video in order to transcribe text and apply some functions to highlight some parts of the transcribed text. I've been reading both the Google Cloud Speech to Text API and the…
Rod0n
  • 1,019
  • 2
  • 14
  • 33
-2
votes
2 answers

Rename defaultdict key in Python

I have the following problem: I have a defaultdict called word_count containing words and the number how often they occur. I get this by counting the reply of the Google Speech API. However, this API gives me back things like '\303\266' for the…
Ben
  • 3
  • 5
-2
votes
2 answers

Issue in using google speech API with Node.js

I have used below code snippet for google speech to text recognition, var speech = require('google-speech-api'); var opts = { file: 'speech.mp3', key: '' }; speech(opts, function (err, results) { console.log(results); //…
-2
votes
1 answer

Google Speech API + Flex API

This might be considered a very broad question but, I am trying to introduce speech into a web application built using Flex API. My initial plan is to introduce something like the Google homepage with a text box and a mic icon which will trigger the…
Nirbhay Tandon
  • 318
  • 2
  • 13
-2
votes
1 answer

Google SpeecH API Does Not return after Connecting

I am trying to develop a Speech to Text Application. As a test I ran the following with these results: wget -U "Mozilla/5.0" --post-file /home/pi/good-morning-google.flac --header "Content-Type: audio/x-flac; rate=44100" -O -…
Hankp
  • 47
  • 5
-3
votes
1 answer

Regarding Google Speech API

I am using Google Speech API to convert voice to text convertion, it is working fine when i use my own recorded voice, but the result is not proper while using computer generated Lady voice, like cell phone network operator voice. Any one faced this…
-4
votes
1 answer

why is it not possible to do "import gtts.gTTS" whereas i can do "from gtts import gTTS" in python?

The error says that the there is no module named as "gtts.gTTS", and got this error many times while importing other modules. So can you brief me what is the logic behind importing modules? Can't we import class using "." operator? What is the…
1 2 3
55
56