Description
I converted my files from MP3s to FLAC, and uploaded them to a bucket.
- Using the gRPC version of this, I get no transcript:
python transcribe_async.py --encoding LINEAR16 --sample_rate 16000 gs://sieling-wav/10000.flac
name: "3946981841087526250"
Waiting for server processing...
Waiting for server processing...
etc, for some time.
- Alternately, if I do this with the "api-client" version, I get JSON responses when it succeeds, but not the transcript:
{"metadata": {"startTime": "2016-10-05T00:05:38.830764Z", "progressPercent": 100, "@type": "type.googleapis.com/google.cloud.speech.v1beta1.AsyncRecognizeMetadata", "lastUpdateTime": "2016-10-05T00:06:22.396557Z"}, "name": "6946489939306634899", "done": true, "response": {"@type": "type.googleapis.com/google.cloud.speech.v1beta1.AsyncRecognizeResponse"}}
It appears that the API is doing the work (it takes 10-30 seconds to be marked as complete). I know this probably isn't in your power to change, but it would be nice if you could just store the transcript results in another storage bucket.
Is there some form of debugging I can enable to get you more information?