Struct wavv::Wave[][src]

pub struct Wave {
    pub header: Header,
    pub data: Samples,
    pub unknown_chunks: Option<Vec<Chunk>>,
}

Struct representing a .wav file

Fields

header: Header

Contains data from the fmt chunk / header part of the file

data: Samples

Contains audio data as samples of a fixed bit depth

unknown_chunks: Option<Vec<Chunk>>

Contains raw chunk data that is either unimplemented or unknown

Implementations

impl Wave[src]

pub fn from_bytes(bytes: &[u8]) -> Result<Self, Error>[src]

Create new Wave instance from a slice of bytes

Examples

use std::fs;
use std::path::Path;
use wavv::Wave;

fn main() {
    let bytes = fs::read(Path::new("./test_files/sine_mono_16_44100.wav")).unwrap();
    let wave = Wave::from_bytes(&bytes).unwrap();

    assert_eq!(wave.header.num_channels, 1);
    assert_eq!(wave.header.bit_depth, 16);
    assert_eq!(wave.header.sample_rate, 44_100);
}

Trait Implementations

impl Debug for Wave[src]

Auto Trait Implementations

impl Send for Wave

impl Sync for Wave

impl Unpin for Wave

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.