3个不稳定版本
使用旧Rust 2015
0.1.0 | 2018年7月10日 |
---|---|
0.0.2 | 2018年7月9日 |
0.0.1 | 2018年7月6日 |
#334 in 多媒体
43 每月下载量
55KB
1.5K SLoC
flv_codec
FLV文件格式的解码器和编码器。
示例
use bytecodec::io::IoDecodeExt;
use flv_codec::{FileDecoder, Header, Tag};
// Reads FLV file content
let mut flv = &include_bytes!("../black_silent.flv")[..];
let mut decoder = FileDecoder::new();
// Decodes the first FLV tag
let tag = decoder.decode_exact(&mut flv).unwrap();
let header = decoder.header().cloned().unwrap();
assert_eq!(header, Header { has_audio: true, has_video: true });
assert_eq!(tag.timestamp().value(), 0);
assert_eq!(tag.stream_id().value(), 0);
match tag {
Tag::Audio(_) => println!("audio tag"),
Tag::Video(_) => println!("video tag"),
Tag::ScriptData(_) => println!("script data tag"),
}
// Decodes the second FLV tag
let tag = decoder.decode_exact(&mut flv).unwrap();
更多示例请见examples/目录。
参考
依赖项
~1.5MB
~40K SLoC