Show / Hide Table of Contents

Class AudioFormatDetails

Audio format details.

Inheritance
object
AudioFormatDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AispeechService.Models
Assembly: OCI.DotNetSDK.Aispeech.dll
Syntax
public class AudioFormatDetails

Properties

Encoding

Declaration
[JsonProperty(PropertyName = "encoding")]
public string Encoding { get; set; }
Property Value
Type Description
string

Input file encoding. Example - PCM.

Format

Declaration
[JsonProperty(PropertyName = "format")]
public string Format { get; set; }
Property Value
Type Description
string

Input file format. Example - WAV.

NumberOfChannels

Declaration
[JsonProperty(PropertyName = "numberOfChannels")]
public int? NumberOfChannels { get; set; }
Property Value
Type Description
int?

Input file number of channels.

SampleRateInHz

Declaration
[JsonProperty(PropertyName = "sampleRateInHz")]
public int? SampleRateInHz { get; set; }
Property Value
Type Description
int?

Input file sampleRate. Example - 16000

In this article
Back to top