Class ApiTranscriptSegment
A contiguous span of transcribed speech. The span covered by a segment depends on the requested TimestampLevel.
Inherited Members
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class ApiTranscriptSegment
Constructors
View SourceApiTranscriptSegment(string, double, double)
Initializes a new instance of the ApiTranscriptSegment class.
Declaration
public ApiTranscriptSegment(string text = "", double startTime = 0, double endTime = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | The transcribed text of this segment. |
| double | startTime | Offset of the start of this segment, in seconds from the beginning of the media. |
| double | endTime | Offset of the end of this segment, in seconds from the beginning of the media. |
Properties
View SourceEndTime
Offset of the end of this segment, in seconds from the beginning of the media.
Declaration
public double EndTime { get; protected set; }
Property Value
| Type | Description |
|---|---|
| double |
StartTime
Offset of the start of this segment, in seconds from the beginning of the media.
Declaration
public double StartTime { get; protected set; }
Property Value
| Type | Description |
|---|---|
| double |
Text
The transcribed text of this segment.
Declaration
public string Text { get; protected set; }
Property Value
| Type | Description |
|---|---|
| string |