airflow.providers.google.cloud.hooks.speech_to_text
¶
此模块包含 Google Cloud Speech Hook。
模块内容¶
类¶
用于 Google Cloud Speech API 的 Hook。 |
- class airflow.providers.google.cloud.hooks.speech_to_text.CloudSpeechToTextHook(gcp_conn_id='google_cloud_default', impersonation_chain=None, **kwargs)[source]¶
基类:
airflow.providers.google.common.hooks.base_google.GoogleBaseHook
用于 Google Cloud Speech API 的 Hook。
- 参数
gcp_conn_id (str) – 获取连接信息时使用的连接 ID。
impersonation_chain (str | collections.abc.Sequence[str] | None) – 可选的服务帐户,用于使用短期凭据模拟,或用于获取列表中最后一个帐户的 access_token 所需的帐户链列表,该帐户将在请求中被模拟。如果设置为字符串,则该帐户必须授予原始帐户“服务帐户令牌创建者”IAM 角色。如果设置为序列,则列表中的身份必须将“服务帐户令牌创建者”IAM 角色授予紧随其后的身份,列表中的第一个帐户将此角色授予原始帐户。
- get_conn()[source]¶
检索到 Cloud Speech 的连接。
- 返回
Google Cloud Speech 客户端对象。
- 返回类型
google.cloud.speech_v1.SpeechClient
- recognize_speech(config, audio, retry=DEFAULT, timeout=None)[source]¶
识别音频输入。
- 参数
config (dict | google.cloud.speech_v1.types.RecognitionConfig) – 向识别器提供信息,指定如何处理请求。https://googleapis.github.io/google-cloud-python/latest/speech/gapic/v1/types.html#google.cloud.speech_v1.types.RecognitionConfig
audio (dict | google.cloud.speech_v1.types.RecognitionAudio) – 要识别的音频数据 https://googleapis.github.io/google-cloud-python/latest/speech/gapic/v1/types.html#google.cloud.speech_v1.types.RecognitionAudio
retry (google.api_core.retry.Retry | google.api_core.gapic_v1.method._MethodDefault) – (可选) 用于重试请求的重试对象。如果指定 None,则不会重试请求。
timeout (float | None) – (可选) 等待请求完成的时间(以秒为单位)。请注意,如果指定了重试,则超时时间适用于每次尝试。