Dropbox .NET SDK
Show / Hide Table of Contents

Class ApiTranscriptSegment

A contiguous span of transcribed speech. The span covered by a segment depends on the requested TimestampLevel.

Inheritance
object
ApiTranscriptSegment
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class ApiTranscriptSegment

Constructors

View Source

ApiTranscriptSegment(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 Source

EndTime

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
View Source

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
View Source

Text

The transcribed text of this segment.

Declaration
public string Text { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK