[−][src]Struct hound::WavReader
A reader that reads the WAVE format from the underlying reader.
A WavReader
is a streaming reader. It reads data from the underlying
reader on demand, and it reads no more than strictly necessary. No internal
buffering is performed on the underlying reader, but this can easily be
added by wrapping the reader in an io::BufReader
. The open
constructor
takes care of this for you.
Methods
impl<R> WavReader<R> where
R: Read,
[src]
R: Read,
pub fn new(reader: R) -> Result<WavReader<R>>
[src]
Attempts to create a reader that reads the WAVE format.
The header is read immediately. Reading the data will be done on demand.
pub fn spec(&self) -> WavSpec
[src]
Returns information about the WAVE file.
ⓘImportant traits for WavSamples<'wr, R, S>pub fn samples<'wr, S: Sample>(&'wr mut self) -> WavSamples<'wr, R, S>
[src]
Returns an iterator over all samples.
The channel data is is interleaved. The iterator is streaming. That is, if you call this method once, read a few samples, and call this method again, the second iterator will not start again from the beginning of the file, it will continue where the first iterator stopped.
The type S
must have at least spec().bits_per_sample
bits,
otherwise every iteration will return an error. All bit depths up to
32 bits per sample can be decoded into an i32
, but if you know
beforehand that you will be reading a file with 16 bits per sample, you
can save memory by decoding into an i16
.
The type of S
(int or float) must match spec().sample_format
,
otherwise every iteration will return an error.
ⓘImportant traits for WavIntoSamples<R, S>pub fn into_samples<S: Sample>(self) -> WavIntoSamples<R, S>
[src]
Same as samples
, but takes ownership of the WavReader
.
See samples()
for more info.
pub fn duration(&self) -> u32
[src]
Returns the duration of the file in samples.
The duration is independent of the number of channels. It is expressed in units of samples. The duration in seconds can be obtained by dividing this number by the sample rate. The duration is independent of how many samples have been read already.
pub fn len(&self) -> u32
[src]
Returns the number of values that the sample iterator will yield.
The length of the file is its duration (in samples) times the number of
channels. The length is independent of how many samples have been read
already. To get the number of samples left, use len()
on the
samples()
iterator.
pub fn into_inner(self) -> R
[src]
Destroys the WavReader
and returns the underlying reader.
pub fn seek(&mut self, time: u32) -> Result<()> where
R: Seek,
[src]
R: Seek,
Seek to the given time within the file.
The given time is measured in number of samples (independent of the
number of channels) since the beginning of the audio data. To seek to
a particular time in seconds, multiply the number of seconds with
WavSpec::sample_rate
. The given time should not exceed the duration of
the file (returned by duration()
). The behavior when seeking beyond
duration()
depends on the reader's Seek
implementation.
This method requires that the inner reader R
implements Seek
.
impl WavReader<BufReader<File>>
[src]
pub fn open<P: AsRef<Path>>(filename: P) -> Result<WavReader<BufReader<File>>>
[src]
Attempts to create a reader that reads from the specified file.
This is a convenience constructor that opens a File
, wraps it in a
BufReader
and then constructs a WavReader
from it.
Auto Trait Implementations
impl<R> Unpin for WavReader<R> where
R: Unpin,
R: Unpin,
impl<R> Sync for WavReader<R> where
R: Sync,
R: Sync,
impl<R> Send for WavReader<R> where
R: Send,
R: Send,
impl<R> UnwindSafe for WavReader<R> where
R: UnwindSafe,
R: UnwindSafe,
impl<R> RefUnwindSafe for WavReader<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,