WavReader constructor

WavReader(
  1. RandomAccessFile file
)

Creates a new WavReader instance from file, automatically parsing the header.

Implementation

WavReader(this.file) {
  _readHeader();
}