REST Resource: conferenceRecords.transcripts

リソース: 文字起こし

会議から生成された文字起こしのメタデータ。会議中のユーザーの音声の ASR(自動音声認識)の結果を指します。

JSON 表現
{
  "name": string,
  "state": enum (State),
  "startTime": string,
  "endTime": string,

  // Union field destination can be only one of the following:
  "docsDestination": {
    object (DocsDestination)
  }
  // End of list of possible types for union field destination.
}
フィールド
name

string

出力のみ。音声文字変換のリソース名。形式: conferenceRecords/{conferenceRecord}/transcripts/{transcript}。ここで、{transcript} は会議の一意の音声文字変換セッションごとに 1 対 1 でマッピングされます。

state

enum (State)

出力のみ。現在の状態。

startTime

string (Timestamp format)

出力のみ。文字起こしが開始されたときのタイムスタンプ。

endTime

string (Timestamp format)

出力のみ。文字起こしが停止したときのタイムスタンプ。

共用体フィールド destination

destination は次のいずれかになります。

docsDestination

object (DocsDestination)

出力のみ。Google ドキュメントの文字起こしの保存場所。

DocsDestination

文字起こしファイルが保存されている Google ドキュメント上の場所。

JSON 表現
{
  "document": string,
  "exportUri": string
}
フィールド
document

string

出力のみ。基になる Google ドキュメントの文字起こしファイルのドキュメント ID。例: 「1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP」。Google ドキュメント API の documents.get メソッド(https://developers.google.com/docs/api/reference/rest/v1/documents/get)を使用してコンテンツを取得します。

exportUri

string

出力のみ。Google ドキュメントの文字起こしファイルの URI。https://docs.google.com/document/d/{$DocumentId}/view を使用して、ブラウザで文字起こしを参照します。

状態

音声文字変換セッションの現在の状態。

列挙型
STATE_UNSPECIFIED デフォルト。使用されません。
STARTED アクティブな音声文字変換セッションが開始されました。
ENDED この文字起こしセッションは終了しましたが、文字起こしファイルはまだ生成されていません。
FILE_GENERATED 文字起こしファイルが生成され、ダウンロードできます。

Methods

get

文字起こし ID で文字起こしを取得します。

list

会議レコードから文字起こしのセットを一覧表示します。