Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 238 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 238 Bytes

AVI

The .avi

Usage

let data = unimplemented!();
let (avi, frames) = avi::read_avi(&data).unwrap();

for frame in frames {
    let image = image::load_from_memory(&frame.0).unwrap();
    let bytes = image.as_bytes();
}