[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-10-12 Thread Sam Nyavor
I am also getting a response with no result and dont know how to access the result even if there was a result. How do i know if there are no results? On Thursday, August 11, 2016 at 12:30:55 AM UTC, Bruno Leitão wrote: > > Hi all, > > I perform a async request to google speech-to-text, and now i

[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-09-29 Thread Dave C
FYI, I experienced this same issue with LINEAR16 PCM data and setting the sampleRate to 16k. I then realized that my actual data was at 44.1k. After resampling, I get a reasonable response, although an error message or even an empty list of responses would be nice in the case that the recogni

[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-09-10 Thread Ohad Perry
+1 happens to me as well. the audio is in hebrew and it's an mp3 file On Thursday, August 11, 2016 at 3:30:55 AM UTC+3, Bruno Leitão wrote: > > Hi all, > > I perform a async request to google speech-to-text, and now i do not know > how to get the result of operation. > > I already know that opera

[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-09-10 Thread Ohad Perry
happened in both mp3 and flac files. getting { "name": "851885438749752509", "metadata": { "@type": "type.googleapis.com/google.cloud.speech.v1beta1.AsyncRecognizeMetadata", "progressPercent": 100, "startTime": "2016-09-10T20:58:37.142077Z", "lastUpdateTime": "2016-09-10T20:59

[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-08-22 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
Thank you for bringing this to our attention. I have not been able to reproduce the results reported here. When I tested a .wav PCM 16-bit little-endian signed recording, the result was exactly as described above. I first received an operation name from the async API call and eventually got

[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-08-14 Thread Aris Alexis
I have the same problem with the response, it doesn't include any result. Does this mean it didn't understand anything from the audio file? I am sending a 40seconds linear16 raw PCM 16 bit signed file with clear voices. If there is a problem why isn't there an error reported? On Thursday, Augu

[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-08-11 Thread Bruno Leitão
I'm using the Google .Net API client . When i call: AsyncRecognize, the Operation returns only the parameter Name (e.g. *123456*), others are null.

[google-appengine] Re: Get result of async operation to Google speech-to-text

2016-08-11 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
Using *speech.**asyncrecognize* as an example, here would be the workflow: - Issue a *POST* request to *https://speech.googleapis.com/v1beta1/speech:asyncrecognize* as specified here