speech_transcribe_multichannel.test.yaml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. type: test/samples
  2. schema_version: 1
  3. test:
  4. suites:
  5. - name: Multi-Channel Audio Transcription (Local File)
  6. cases:
  7. # This sample should default to using multi.wav (2 channels)
  8. - name: speech_transcribe_multichannel (no arguments)
  9. spec:
  10. - call:
  11. sample: speech_transcribe_multichannel
  12. - assert_contains:
  13. - literal: "Channel tag: 1"
  14. - literal: "Channel tag: 2"
  15. - literal: "how are you doing"
  16. # Confirm that another file can be transcribed (use another 2 channel .wav file)
  17. - name: speech_transcribe_multichannel (--local_file_path)
  18. spec:
  19. - call:
  20. sample: speech_transcribe_multichannel
  21. params:
  22. local_file_path:
  23. literal: "resources/brooklyn_bridge.wav"
  24. - assert_contains:
  25. # Only one channel of data is present in brooklyn_bridge.wav
  26. - literal: "Channel tag:"
  27. - literal: "how old is the Brooklyn Bridge"
  28. - assert_not_contains:
  29. - literal: "how are you doing"