read_wav

Function read_wav 

Source
pub fn read_wav<TReader: 'static + Read>(
    reader: TReader,
) -> Result<OpenWavReader<TReader>>
Expand description

Reads a wav from a Read struct

§Arguments

  • ‘reader’ - A Read struct. It is strongly recommended that this struct implement some form of buffering, such as via a BufReader