Class GetTranscriptArgs
Arguments for the asynchronous `get_transcript_async` route. Exactly one of
`file_id`, `path`, or `url` must be supplied via `file_id_or_url` to identify the audio
or video asset to transcribe.
Inheritance
GetTranscriptArgs
Assembly: Dropbox.Api.dll
Syntax
public class GetTranscriptArgs
Constructors
View Source
GetTranscriptArgs(FileIdOrUrl, TimestampLevel, string, string)
Declaration
public GetTranscriptArgs(FileIdOrUrl fileIdOrUrl = null, TimestampLevel timestampLevel = null, string includedSpecialWords = "", string audioLanguage = "")
Parameters
Properties
View Source
AudioLanguage
Optional ISO 639-1 two-letter language code hinting the spoken language of
the source audio (e.g. "en", "ja"). When empty, the service auto-detects the
language; supplying a hint improves accuracy and latency for short or ambiguous
clips. Unsupported languages fall back to auto-detection.
Declaration
public string AudioLanguage { get; protected set; }
Property Value
View Source
FileIdOrUrl
Declaration
public FileIdOrUrl FileIdOrUrl { get; protected set; }
Property Value
View Source
IncludedSpecialWords
Comma-delimited list of non-lexical filler words to preserve in the
transcript output, e.g. `"uh, ah, uhm"`. By default these fillers are stripped.
Unrecognized tokens are ignored. Leave empty to use the default filtering
behavior.
Declaration
public string IncludedSpecialWords { get; protected set; }
Property Value
View Source
TimestampLevel
Granularity of the time offsets returned for each transcript segment.
Defaults to `SENTENCE. - SENTENCE: one segment per spoken sentence (recommended). -
WORD: one segment per word, useful for fine-grained alignment such as captioning or
highlight-as-you-listen experiences.
Declaration
public TimestampLevel TimestampLevel { get; protected set; }
Property Value