Exemplo n.º 1
0
 def _get_speech_context(self):
     """Return a SpeechContext instance to bias recognition towards certain
     phrases.
     """
     return cloud_speech.SpeechContext(
         phrases=self._phrases,
     )
Exemplo n.º 2
0
    def request_stream(self, data_stream, rate, interim_results=True):
        """Yields `StreamingRecognizeRequest`s constructed from a recording audio
		stream.
		Args:
				data_stream: A generator that yields raw audio data to send.
				rate: The sampling rate in hertz.
				interim_results: Whether to return intermediate results, before the
						transcription is finalized.
		"""
        # The initial request must contain metadata about the stream, so the
        # server knows how to interpret it.
        cont = cloud_speech_pb2.SpeechContext(phrases=self.context)
        recognition_config = cloud_speech_pb2.RecognitionConfig(
            # There are a bunch of config options you can specify. See
            # https://goo.gl/KPZn97 for the full list.
            encoding='LINEAR16',  # raw 16-bit signed LE samples
            sample_rate=rate,  # the rate in hertz
            # See http://g.co/cloud/speech/docs/languages
            # for a list of supported languages.
            language_code='en-US',  # a BCP-47 language tag
            speech_context=cont,
        )
        streaming_config = cloud_speech_pb2.StreamingRecognitionConfig(
            interim_results=False,
            config=recognition_config,
            single_utterance=True,
        )

        yield cloud_speech_pb2.StreamingRecognizeRequest(
            streaming_config=streaming_config)

        for data in data_stream:
            # Subsequent requests can all just have the content
            yield cloud_speech_pb2.StreamingRecognizeRequest(
                audio_content=data)