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

Media

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

Describes the Amazon S3 location of the media file you want to use in your request.

For information on supported media formats, refer to the MediaFormat parameter or the Media formats section in the Amazon S3 Developer Guide.

interface Media {
MediaFileUri?: string | null;
RedactedMediaFileUri?: string | null;
}

§Properties

§
MediaFileUri?: string | null
[src]

The Amazon S3 location of the media file you want to transcribe. For example:

  • s3://DOC-EXAMPLE-BUCKET/my-media-file.flac
    
  • s3://DOC-EXAMPLE-BUCKET/media-files/my-media-file.flac
    

Note that the Amazon S3 bucket that contains your input media must be located in the same Amazon Web Services Region where you're making your transcription request.

§
RedactedMediaFileUri?: string | null
[src]

The Amazon S3 location of the media file you want to redact. For example:

  • s3://DOC-EXAMPLE-BUCKET/my-media-file.flac
    
  • s3://DOC-EXAMPLE-BUCKET/media-files/my-media-file.flac
    

Note that the Amazon S3 bucket that contains your input media must be located in the same Amazon Web Services Region where you're making your transcription request.

! IMPORTANT: ! RedactedMediaFileUri produces a redacted audio file in addition to a redacted transcript. ! It is only supported for Call Analytics (StartCallAnalyticsJob) transcription requests.