Share via


AudioTranscriptionOptions.TimestampGranularityFlags Property

Definition

The bitwise-aggregated timestamp granularity types that should be requested on an audio transcription operation.

public Azure.AI.OpenAI.AudioTimestampGranularity TimestampGranularityFlags { get; set; }
member this.TimestampGranularityFlags : Azure.AI.OpenAI.AudioTimestampGranularity with get, set
Public Property TimestampGranularityFlags As AudioTimestampGranularity

Property Value

Remarks

Transcription timing information requires the Verbose setting for ResponseFormat.

If no explicit value is set for TimestampGranularityFlags, segment-level timing information will be provided by default.

Multiple timestamp granularities may be requested via joining values with the single-pipe | operator, with e.g. the following requesting both word- and segment-level timing:

TimestampGranularityFlags = <xref data-throw-if-not-resolved="true" uid="Azure.AI.OpenAI.AudioTimestampGranularity.Word"></xref> | <xref data-throw-if-not-resolved="true" uid="Azure.AI.OpenAI.AudioTimestampGranularity.Segment"></xref>

Applies to