英文:
Read &[u8] using hound WavReader
问题
我正在尝试使用 hound 从 [u8] 创建一个 wav 读取器。但是还没有找到一种从字节中读取的方法,只能使用 PathBuf:
const file: &[u8] = include_bytes!("input.wav"); // 将字节包含为 &[u8]
let mut reader = hound::WavReader::open(path).unwrap(); // 有没有其他方法代替 open?
谢谢。
英文:
I'm trying to create a wavreader from [u8] using hound. Haven't found a way to read from bytes, only PathBuff:
const file: &[u8] = include_bytes!("input.wav"); // include bytes as &[u8]
let mut reader = hound::WavReader::open(path).unwrap(); // instead of using open, is there another method?
Thanks
答案1
得分: 2
幸运的是,&[u8]
实现了 Read
,所以你可以直接使用:
const file: &[u8] = include_bytes!("input.wav");
let mut reader = hound::WavReader::new(file).unwrap();
英文:
Lucky for you &[u8]
implements Read
so you can just use:
const file: &[u8] = include_bytes!("input.wav");
let mut reader = hound::WavReader::new(file).unwrap();
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论