AWSTranscribeNonTalkTimeFilter

Objective-C

@interface AWSTranscribeNonTalkTimeFilter

Swift

class AWSTranscribeNonTalkTimeFilter

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 post-call categories for usage examples.

  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTranscribeAbsoluteTimeRange *_Nullable absoluteTimeRange;

    Swift

    var absoluteTimeRange: AWSTranscribeAbsoluteTimeRange? { get set }
  • Set to TRUE to flag periods of speech. Set to FALSE to flag periods of silence

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable negate;

    Swift

    var negate: NSNumber? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTranscribeRelativeTimeRange *_Nullable relativeTimeRange;

    Swift

    var relativeTimeRange: AWSTranscribeRelativeTimeRange? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable threshold;

    Swift

    var threshold: NSNumber? { get set }