airflow.providers.google.cloud.hooks.speech_to_text

此模块包含 Google Cloud Speech Hook。

模块内容

CloudSpeechToTextHook

用于 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]

识别音频输入。

参数

此条目是否对您有帮助?