Questions tagged [google-cloud-speech]

Google Cloud Speech API enables developers to convert audio to text by applying powerful neural network models in an easy to use API

Google Cloud Speech API enables developers to convert audio to text by applying powerful neural network models in an easy to use API.

  • The API recognizes over 80 languages and variants, to support your global user base. You can transcribe the text of users dictating to an application’s microphone, enable command-and-control through voice, or transcribe audio files, among many other use cases.
  • Recognize audio uploaded in the request, and integrate with your audio storage on Google Cloud Storage, by using the same technology Google uses to power its own products.

try it

576 questions
-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

Integrating Google Speech-to-Text on WordPress

I'm planning to make a live stream website on Wordpress, and I was planning on using the Google Speech-to-Text API to auto caption the live stream as it is broadcasting on Wordpress. I'm not sure if the concept is entirely possible to do using the…
-1
votes
2 answers

Can I use google cloud speech api in microsoft azure vm?

I am trying to use google cloud speech API in microsoft azure machine(Where I have installed asterisk service). Is it possible to do this. Because in GCP we have an option where we can enable 'Allow all cloud API services'. But in microsoft we do…
-1
votes
1 answer

Cant make the google API process a WAV Audio

I want to transcribe a simple audio from a phone call. I'm currently working with the Speech API const speech = require('@google-cloud/speech').v1p1beta1; The Information about the Audio I'm trying to transcribe: Codec: PCM MU-LAW (mlaw) Channels:…
-1
votes
2 answers

Transcribing long audio file in iOS app using google-cloud-speech API

I am trying to implement speech to text API in one of my client's app. The client is a healthcare practitioner. I have a pre-recorded .wav file and I am able to get the transcribed text for the audio file by sending it's content to speech:recognize…
Ekta Bhawsar
  • 746
  • 11
  • 26
-1
votes
1 answer

Bad:Can't finish "os.path.dirname(__file)" in ubuntu (python)(google cloud speech)

thanks for helping me! I just set up google cloud speech and tried to run the code in "Make an audio transcription request" in this website: Quickstart: Using Client Libraries the code is shown below after I open ubuntu terminal: export…
LU Huang
  • 11
  • 6
-1
votes
1 answer

google-cloud-speech Medical Pre-Built Models

does anyone know if the google-cloud-speech recognition has a Medical Special Module ? in advance, Thanks Asaf Elkabets M.A.R LTD
-1
votes
1 answer

(Google Cloud Speech) Issue about Asynchronous Transcribe

I have an issue about Google Cloud Speech with Asynchronous transcribe. According to this LINK that Asynchronous can make requests up to 180 minutes. I created the speech to text program by using Google Cloud Speech with PHP development. My idea…
-1
votes
2 answers

API_Key for authentication for Cloud Speech API

I am using google speech api for python. I am trying to use API_key for authentication but it is not taking it. Has google dropped the API_keys as authentication?
-1
votes
1 answer

What is Google's Cloud Speech API's retention policy?

When my users record their voice using the Google's Cloud Speech API, how can I give them the option to delete them later? I tried to search everywhere but haven't found it yet. Google seems to allow this within their Assistant App, but what about…
-2
votes
1 answer

Why do I have to convert this?(StringToNative)

This is part of a speech recognition project using the Google speech to text api. And I don't know what this code does. Do you know any friends? ref class Converters { public: static size_t ConvertStringToNative(System::String^ string,…
-2
votes
1 answer

Why do my dictionary values have '\' in them?

I am reading a dictionary into python that was saved into a csv. I am reading with this code: import csv reader = csv.reader(open('out.csv', 'r')) d = {} for row in reader: k, v = row d[k] = v and getting this result ... {'results':…
connor449
  • 1,549
  • 2
  • 18
  • 49
-2
votes
1 answer

How to Python automatic language detection from SpeechRecognition

Python needs to automatically recognize the language of the audio file being loaded and print the text from the audio file in a specific language when the user clicks the Transcribe button, whether this is possible and what the function should look…
-2
votes
1 answer

What is google cloud speech requirement/prerequisite

is there any additional cost or module that will be required to subscribe/ purchase along with the Speech to text subscription? Best Regards, Rami Amr
-2
votes
1 answer

How to convert long speech to text. Google asyncronous speech recognition in Python

Does anyone know how to convert long speech in wav or MP3 format to text, by using Google speech to text asyncronous API ? I am using the code below but I always get an error finding upload_blob() function. Thanks in advance. from pydub import…
1 2 3
38
39