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

NonTalkTimeFilter

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

Flag the presence or absence of periods of silence in your Call Analytics transcription output.

Rules using NonTalkTimeFilter are designed to match:

  • The presence of silence at specified periods throughout the call
  • The presence of speech at specified periods throughout the call

See Rule criteria for batch categories for usage examples.

interface NonTalkTimeFilter {
AbsoluteTimeRange?: AbsoluteTimeRange | null;
Negate?: boolean | null;
RelativeTimeRange?: RelativeTimeRange | null;
Threshold?: number | null;
}

§Properties

§
AbsoluteTimeRange?: AbsoluteTimeRange | null
[src]

Makes it possible to specify a time range (in milliseconds) in your audio, during which you want to search for a period of silence. See for more detail.

§
Negate?: boolean | null
[src]

Set to TRUE to flag periods of speech. Set to FALSE to flag periods of silence

§
RelativeTimeRange?: RelativeTimeRange | null
[src]

Makes it possible to specify a time range (in percentage) in your media file, during which you want to search for a period of silence. See for more detail.

§
Threshold?: number | null
[src]

Specify the duration, in milliseconds, of the period of silence that you want to flag. For example, you can flag a silent period that lasts 30,000 milliseconds.