Expand description
Items for reading and opening file formats from file.
Structs§
- A description of the audio format that was read from file.
- An iterator that reads samples from the underlying reader, converts them to frames of type
F
and yields them. - An iterator that reads samples from the underlying reader, converts them to the sample type
S
if not already in that format and yields them.
Enums§
- Format-specific errors that might occur when opening or reading from an audio file.
- Errors that might be returned from the
Reader::new
function. - Returned by the
read
function, enumerates the various supported readers.
Traits§
- Types to which read samples may be converted via the
Reader::samples
method.
Functions§
- Attempts to open an audio
Reader
from the file at the specifiedPath
.
Type Aliases§
- An alias for the buffered, file
Reader
type returned from theopen
function.