3个版本
0.1.2 | 2020年8月6日 |
---|---|
0.1.1 | 2020年8月5日 |
0.1.0 | 2020年8月5日 |
#647 在 音频 中
每月596次下载
用于 10 个Crate(2个直接使用)
17KB
361 行
Opus头解析库
根据规范解析Opus头。
使用方法
use std::path::Path;
use opus_headers::parse_from_path; // or parse_from_read or parse_from_file
fn main() {
let path = Path::new("/mnt/RamDisk/silence.opus");
let headers = parse_from_path(path).unwrap();
let comments = headers.comments.user_comments;
for (tag, value) in &comments {
println!("{}: {}", tag, value);
}
}
许可证
如大多数Rust源代码,此库同时受Apache 2.0和MIT许可证的约束。