Class AudioTranslation

java.lang.Object
com.azure.ai.openai.models.AudioTranslation

public final class AudioTranslation extends Object
Result information for an operation that translated spoken audio into written text.
  • Method Details

    • getText

      public String getText()
      Get the text property: The translated text for the provided audio data.
      Returns:
      the text value.
    • getTask

      public AudioTaskLabel getTask()
      Get the task property: The label that describes which operation type generated the accompanying response data.
      Returns:
      the task value.
    • getLanguage

      public String getLanguage()
      Get the language property: The spoken language that was detected in the translated audio data. This is expressed as a two-letter ISO-639-1 language code like 'en' or 'fr'.
      Returns:
      the language value.
    • getDuration

      public Duration getDuration()
      Get the duration property: The total duration of the audio processed to produce accompanying translation information.
      Returns:
      the duration value.
    • getSegments

      public List<AudioTranslationSegment> getSegments()
      Get the segments property: A collection of information about the timing, probabilities, and other detail of each processed audio segment.
      Returns:
      the segments value.