Interface IWavReader
Wav streaming interface.
Inherited Members
Namespace: Acoustics.Tools.Wav
Assembly: Acoustics.Tools.dll
Syntax
public interface IWavReader : IDisposable
Properties
| Improve this Doc View SourceAudioInfo
Gets wav Audio Info.
Declaration
WavAudioInfo AudioInfo { get; }
Property Value
Type | Description |
---|---|
Wav |
Chunks
Gets Chunks in the wav stream.
Declaration
IEnumerable<WavChunk> Chunks { get; }
Property Value
Type | Description |
---|---|
IEnumerable<Wav |
Samples
Gets Samples.
Declaration
double[] Samples { get; }
Property Value
Type | Description |
---|---|
Double[] |
SampleStream
Gets Samples. Make no assumptions about the position of the stream. Use this.Chunks to position the stream at the start of the chunk you want.
Declaration
Stream SampleStream { get; }
Property Value
Type | Description |
---|---|
Stream |