次の方法で共有


AudioTranscriptionFormat クラス

public final class AudioTranscriptionFormat
extends ExpandableStringEnum<AudioTranscriptionFormat>

出力文字起こし情報の基になる応答形式に使用できるオプションを定義します。

フィールドの概要

修飾子と型 フィールドと説明
static final AudioTranscriptionFormat JSON

文字起こし用の単一の 'text' フィールドを含む JSON オブジェクトである応答本文を使用します。

static final AudioTranscriptionFormat SRT

タイミング情報も含むサブリップ (SRT) 形式のプレーン テキストの応答本文を使用します。

static final AudioTranscriptionFormat TEXT

未通知の生の文字起こしを含むプレーン テキストの応答本文を使用します。

static final AudioTranscriptionFormat VERBOSE_JSON

タイミング、セグメント、およびその他のメタデータと共に文字起こしテキストを含む JSON オブジェクトである応答本文を使用します。

static final AudioTranscriptionFormat VTT

Web ビデオ テキスト トラック (VTT) 形式のプレーン テキストで、タイミング情報も含む応答本文を使用します。

コンストラクターの概要

コンストラクター 説明
AudioTranscriptionFormat()

非推奨

ファクトリ メソッドを使用します fromString(String name)

AudioTranscriptionFormat 値の新しいインスタンスを作成します。

メソッドの概要

修飾子と型 メソッドと説明
static AudioTranscriptionFormat fromString(String name)

文字列表現からオーディオ文字起こし形式を作成または検索します。

static Collection<AudioTranscriptionFormat> values()

既知のオーディオ文字起こし形式の値を取得します。

メソッドの継承元: ExpandableStringEnum

メソッドの継承元: java.lang.Object

フィールドの詳細

JSON

public static final AudioTranscriptionFormat JSON

文字起こし用の単一の 'text' フィールドを含む JSON オブジェクトである応答本文を使用します。

SRT

public static final AudioTranscriptionFormat SRT

タイミング情報も含む、SubRip (SRT) 形式のプレーン テキストの応答本文を使用します。

TEXT

public static final AudioTranscriptionFormat TEXT

未通知の生の文字起こしを含むプレーン テキストの応答本文を使用します。

VERBOSE_JSON

public static final AudioTranscriptionFormat VERBOSE_JSON

タイミング、セグメント、およびその他のメタデータと共に文字起こしテキストを含む JSON オブジェクトである応答本文を使用します。

VTT

public static final AudioTranscriptionFormat VTT

Web ビデオ テキスト トラック (VTT) 形式のプレーン テキストで、タイミング情報も含む応答本文を使用します。

コンストラクターの詳細

AudioTranscriptionFormat

@Deprecated
public AudioTranscriptionFormat()

非推奨

ファクトリ メソッドを使用します fromString(String name)

AudioTranscriptionFormat 値の新しいインスタンスを作成します。

メソッドの詳細

fromString

public static AudioTranscriptionFormat fromString(String name)

文字列表現から AudioTranscriptionFormat を作成または検索します。

パラメーター:

name - 検索する名前。

戻り値:

対応する AudioTranscriptionFormat。

values

public static Collection values()

既知の AudioTranscriptionFormat 値を取得します。

戻り値:

既知の AudioTranscriptionFormat 値。

適用対象