speech_contexts_classes_beta.yaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. type: com.google.api.codegen.samplegen.v1p2.SampleConfigProto
  2. schema_version: 1.2.0
  3. samples:
  4. - region_tag: speech_contexts_classes_beta
  5. title: Using Context Classes (Cloud Storage)
  6. description: Transcribe a short audio file with static context classes.
  7. rpc: Recognize
  8. service: google.cloud.speech.v1p1beta1.Speech
  9. request:
  10. - field: audio.uri
  11. value: "gs://cloud-samples-data/speech/time.mp3"
  12. input_parameter: storage_uri
  13. comment: URI for audio file in Cloud Storage, e.g. gs://[BUCKET]/[FILE]
  14. - field: config.speech_contexts[0].phrases[0]
  15. value: "$TIME"
  16. input_parameter: phrase
  17. comment: |
  18. Phrase "hints" help recognize the specified phrases from your audio.
  19. In this sample we are using a static class phrase ($TIME).
  20. Classes represent groups of words that represent common concepts
  21. that occur in natural language.
  22. - field: config.language_code
  23. value: "en-US"
  24. comment: The language of the supplied audio
  25. - field: config.sample_rate_hertz
  26. value: 24000
  27. comment: Sample rate in Hertz of the audio data sent
  28. - field: config.encoding
  29. value: MP3
  30. comment: |
  31. Encoding of audio data sent. This sample sets this explicitly.
  32. This field is optional for FLAC and WAV audio formats.
  33. response:
  34. - loop:
  35. variable: result
  36. collection: $resp.results
  37. body:
  38. - comment:
  39. - First alternative is the most probable result
  40. - define: alternative = result.alternatives[0]
  41. - print:
  42. - "Transcript: %s"
  43. - alternative.transcript