Interface ExplicitDecodingConfigOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    ExplicitDecodingConfig, ExplicitDecodingConfig.Builder

    public interface ExplicitDecodingConfigOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getAudioChannelCount()
      Number of channels present in the audio data sent for recognition.
      ExplicitDecodingConfig.AudioEncoding getEncoding()
      Required.
      int getEncodingValue()
      Required.
      int getSampleRateHertz()
      Sample rate in Hertz of the audio data sent for recognition.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getEncodingValue

        int getEncodingValue()
         Required. Encoding of the audio data sent for recognition.
         
        .google.cloud.speech.v2.ExplicitDecodingConfig.AudioEncoding encoding = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The enum numeric value on the wire for encoding.
      • getEncoding

        ExplicitDecodingConfig.AudioEncoding getEncoding()
         Required. Encoding of the audio data sent for recognition.
         
        .google.cloud.speech.v2.ExplicitDecodingConfig.AudioEncoding encoding = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The encoding.
      • getSampleRateHertz

        int getSampleRateHertz()
         Sample rate in Hertz of the audio data sent for recognition. Valid
         values are: 8000-48000. 16000 is optimal. For best results, set the
         sampling rate of the audio source to 16000 Hz. If that's not possible, use
         the native sample rate of the audio source (instead of re-sampling).
         Supported for the following encodings:
        
         * LINEAR16: Headerless 16-bit signed little-endian PCM samples.
        
         * MULAW: Headerless 8-bit companded mulaw samples.
        
         * ALAW: Headerless 8-bit companded alaw samples.
         
        int32 sample_rate_hertz = 2;
        Returns:
        The sampleRateHertz.
      • getAudioChannelCount

        int getAudioChannelCount()
         Number of channels present in the audio data sent for recognition.
         Supported for the following encodings:
        
         * LINEAR16: Headerless 16-bit signed little-endian PCM samples.
        
         * MULAW: Headerless 8-bit companded mulaw samples.
        
         * ALAW: Headerless 8-bit companded alaw samples.
        
         The maximum allowed value is 8.
         
        int32 audio_channel_count = 3;
        Returns:
        The audioChannelCount.