3个不稳定版本
0.2.1 | 2023年4月10日 |
---|---|
0.2.0 | 2023年4月8日 |
0.1.0 | 2023年1月27日 |
#11 in #thumbnail
每月 24次下载
用于 paferafileserver
9KB
188 行
ffthumb
Rust的ffmpegthumbnailer安全包装库
extern crate ffthumb;
use std::{
fs::File,
io::{stdout, Write},
};
use ffthumb::Thumbnailer;
fn main() {
let mut th = Thumbnailer::builder().finalize();
File::create("thumbnail.png")
.unwrap()
.write(
th.generate("bad_apple.mkv", Some(25), None)
.unwrap()
.as_slice()
)
.unwrap();
}
依赖项
~230KB