Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Subtitles

import type { Subtitles } from "https://aws-api.deno.dev/v0.4/services/transcribeservice.ts?docs=full";

Generate subtitles for your media file with your transcription request.

You can choose a start index of 0 or 1, and you can specify either WebVTT or SubRip (or both) as your output format.

Note that your subtitle files are placed in the same location as your transcription output.

interface Subtitles {
Formats?: SubtitleFormat[] | null;
OutputStartIndex?: number | null;
}

§Properties

§
Formats?: SubtitleFormat[] | null
[src]

Specify the output format for your subtitle file; if you select both WebVTT (vtt) and SubRip (srt) formats, two output files are generated.

§
OutputStartIndex?: number | null
[src]

Specify the starting value that is assigned to the first subtitle segment.

The default start index for Amazon Transcribe is 0, which differs from the more widely used standard of 1. If you're uncertain which value to use, we recommend choosing 1, as this may improve compatibility with other services.