speech_transcribe_auto_punctuation_beta.yaml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. type: com.google.api.codegen.samplegen.v1p2.SampleConfigProto
  2. schema_version: 1.2.0
  3. samples:
  4. - region_tag: speech_transcribe_auto_punctuation_beta
  5. title: Getting punctuation in results (Local File) (Beta)
  6. description: Transcribe a short audio file with punctuation
  7. rpc: Recognize
  8. service: google.cloud.speech.v1p1beta1.Speech
  9. request:
  10. - field: audio.content
  11. value: "resources/commercial_mono.wav"
  12. input_parameter: local_file_path
  13. comment: Path to local audio file, e.g. /path/audio.wav
  14. value_is_file: true
  15. - field: config.enable_automatic_punctuation
  16. value: true
  17. comment: |
  18. When enabled, trascription results may include punctuation
  19. (available for select languages).
  20. - field: config.language_code
  21. value: "en-US"
  22. comment: |
  23. The language of the supplied audio. Even though additional languages are
  24. provided by alternative_language_codes, a primary language is still required.
  25. response:
  26. - loop:
  27. variable: result
  28. collection: $resp.results
  29. body:
  30. - comment:
  31. - First alternative is the most probable result
  32. - define: alternative = result.alternatives[0]
  33. - print:
  34. - "Transcript: %s"
  35. - alternative.transcript