#file-format #audio-video #file-io #chunks #reading #wave #formatted

riff

This crate provides utilities for reading and writing RIFF formatted files

5 releases (3 stable)

2.0.0 Jun 15, 2023
1.0.1 Jul 29, 2020
1.0.0 Apr 26, 2020
0.1.1 Jul 3, 2018
0.1.0 Jul 3, 2018

#15 in Multimedia

Download history 43078/week @ 2024-07-21 50088/week @ 2024-07-28 34208/week @ 2024-08-04 59459/week @ 2024-08-11 58501/week @ 2024-08-18 30381/week @ 2024-08-25 35007/week @ 2024-09-01 36605/week @ 2024-09-08 43797/week @ 2024-09-15 42221/week @ 2024-09-22 45722/week @ 2024-09-29 43342/week @ 2024-10-06 34577/week @ 2024-10-13 45882/week @ 2024-10-20 47379/week @ 2024-10-27 56786/week @ 2024-11-03

185,920 downloads per month
Used in 51 crates (5 directly)

MIT license

12KB
217 lines

riff

Crate for doing IO on RIFF-formatted files

This crate provides utility methods for reading and writing formats such as Microsoft Wave, Audio Video Interleave or Downloadable Sounds.

Examples

Reading chunks:

let mut file = File::open("somefile.wav")?;
let chunk = riff::Chunk::read(&mut file, 0)?;

for child in chunk.iter(&mut file) {
  println!(child.id());
}

Writing chunks:

// Some ids to use while creating chunks
let smpl_id: ChunkId = ChunkId { value: [0x73, 0x6D, 0x70, 0x6C] };
let test_id: ChunkId = ChunkId { value: [0x74, 0x65, 0x73, 0x74] };
let tst1_id: ChunkId = ChunkId { value: [0x74, 0x73, 0x74, 0x31] };
let tst2_id: ChunkId = ChunkId { value: [0x74, 0x73, 0x74, 0x32] };

let str1 = "hey this is a test".as_bytes().to_vec();
let str2 = "hey this is another test".as_bytes().to_vec();
let str3 = "final test".as_bytes().to_vec();

let contents = ChunkContents::Children(
  riff::RIFF_ID,
  smpl_id,
  vec![
    ChunkContents::Children(
      riff::LIST_ID,
      tst1_id,
      vec![
        ChunkContents::Data(test_id, str1),
        ChunkContents::Data(test_id, str2)
      ]),
    ChunkContents::Children(
      riff::LIST_ID,
      tst2_id,
      vec![
        ChunkContents::Data(test_id, str3)
      ]
    )
  ]);

let mut file = File::create("somefile.riff")?;
contents.write(&mut file)?;

No runtime deps