2 个不稳定版本
0.2.0 | 2024 年 7 月 15 日 |
---|---|
0.1.0 | 2024 年 6 月 2 日 |
在 科学 中排名第 392
每月下载 29 次
2MB
226 代码行
faster-whisper-rs
这是一个 Rust crate,用于轻松将语音到文本功能集成到您的 Rust 程序中。
Python API
安装 Rust
在 Linux 或 MacOS 上
curl --proto '=https' --tlsv1.2 -ssf https://sh.rustup.rs | sh
制作转录本的示例
use std::error::Error;
use faster-whisper-rs::WhisperModel;
fn main() -> Result<(), Box<dyn Error>>{
let fw = WhisperModel::default();
let transcript = fw.transcribe("Path to file".to_string())?;
println!("{}", transcript);
Ok(())
}
贡献
欢迎 Pull 请求。对于重大更改,请首先打开一个问题来讨论您想更改的内容。
许可证
依赖项
~4–9.5MB
~95K SLoC