AWSTranscribeStreamingItem

Objective-C

@interface AWSTranscribeStreamingItem

Swift

class AWSTranscribeStreamingItem

A word or phrase transcribed from the input audio.

  • The word or punctuation that was recognized in the input audio.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable content;

    Swift

    var content: String? { get set }
  • The offset from the beginning of the audio stream to the end of the audio that resulted in the item.

    Declaration

    Objective-C

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

    Swift

    var endTime: NSNumber? { get set }
  • The offset from the beginning of the audio stream to the beginning of the audio that resulted in the item.

    Declaration

    Objective-C

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

    Swift

    var startTime: NSNumber? { get set }
  • The type of the item. PRONUNCIATION indicates that the item is a word that was recognized in the input audio. PUNCTUATION indicates that the item was interpreted as a pause in the input audio.

    Declaration

    Objective-C

    @property (nonatomic) AWSTranscribeStreamingItemType types;

    Swift

    var types: AWSTranscribeStreamingItemType { get set }