Class WavAudioInfo
The wav audio info.
Inherited Members
Namespace: Acoustics.Tools.Wav
Assembly: Acoustics.Tools.dll
Syntax
public class WavAudioInfo
Properties
| Improve this Doc View SourceBitsPerSample
Gets or sets Bits per sample.
Declaration
public short BitsPerSample { get; set; }
Property Value
Type | Description |
---|---|
Int16 |
BytesPerSample
Gets or sets Bytes Per Sample / Block Align.
Declaration
public short BytesPerSample { get; set; }
Property Value
Type | Description |
---|---|
Int16 |
BytesPerSecond
Gets or sets Bytes per second.
Declaration
public int BytesPerSecond { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Channels
Gets or sets Number of channels.
Declaration
public short Channels { get; set; }
Property Value
Type | Description |
---|---|
Int16 |
CompressionCode
Gets or sets Compression code (1 for uncompressed PCM audio).
Declaration
public short CompressionCode { get; set; }
Property Value
Type | Description |
---|---|
Int16 |
Duration
Gets or sets Total duration of audio.
Declaration
public TimeSpan Duration { get; set; }
Property Value
Type | Description |
---|---|
Time |
Epsilon
Gets Epsilon.
Declaration
public double Epsilon { get; }
Property Value
Type | Description |
---|---|
Double |
Frames
Gets or sets Number of frames (samples).
Declaration
public long Frames { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
SampleRate
Gets or sets Sample rate of audio (number of samples per second).
Declaration
public int SampleRate { get; set; }
Property Value
Type | Description |
---|---|
Int32 |