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

TimeSpan

import type { TimeSpan } from "https://aws-api.deno.dev/v0.3/services/elastictranscoder.ts?docs=full";

Settings that determine when a clip begins and how long it lasts.

interface TimeSpan {
Duration?: string | null;
StartTime?: string | null;
}

§Properties

§
Duration?: string | null
[src]

The duration of the clip. The format can be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a value, Elastic Transcoder creates an output file from StartTime to the end of the file.

If you specify a value longer than the duration of the input file, Elastic Transcoder transcodes the file and returns a warning message.

§
StartTime?: string | null
[src]

The place in the input file where you want a clip to start. The format can be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a value, Elastic Transcoder starts at the beginning of the input file.