ProcessedAudio
public struct ProcessedAudio : Codable, Equatable
Detailed timing information about the service’s processing of the input audio.
-
The seconds of audio that the service has received as of this response. The value of the field is greater than the values of the
transcriptionandspeaker_labelsfields during speech recognition processing, since the service first has to receive the audio before it can begin to process it. The final value can also be greater than the value of thetranscriptionandspeaker_labelsfields by a fractional number of seconds.Declaration
Swift
public var received: Double -
The seconds of audio that the service has passed to its speech-processing engine as of this response. The value of the field is greater than the values of the
transcriptionandspeaker_labelsfields during speech recognition processing. Thereceivedandseen_by_enginefields have identical values when the service has finished processing all audio. This final value can be greater than the value of thetranscriptionandspeaker_labelsfields by a fractional number of seconds.Declaration
Swift
public var seenByEngine: Double -
The seconds of audio that the service has processed for speech recognition as of this response.
Declaration
Swift
public var transcription: Double -
If speaker labels are requested, the seconds of audio that the service has processed to determine speaker labels as of this response. This value often trails the value of the
transcriptionfield during speech recognition processing. Thetranscriptionandspeaker_labelsfields have identical values when the service has finished processing all audio.Declaration
Swift
public var speakerLabels: Double?
View on GitHub
ProcessedAudio Structure Reference