Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coderscreative/faster-whisper-rs
a rust crate for easily implementing faster-whisper stt into your rust programs.
https://github.com/coderscreative/faster-whisper-rs
ai faster-whisper rust speech-recognition speech-to-text stt whisper
Last synced: about 1 month ago
JSON representation
a rust crate for easily implementing faster-whisper stt into your rust programs.
- Host: GitHub
- URL: https://github.com/coderscreative/faster-whisper-rs
- Owner: CodersCreative
- Created: 2024-06-02T13:26:43.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-07-15T20:47:53.000Z (4 months ago)
- Last Synced: 2024-10-09T19:20:17.412Z (about 1 month ago)
- Topics: ai, faster-whisper, rust, speech-recognition, speech-to-text, stt, whisper
- Language: Rust
- Homepage:
- Size: 1.89 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# faster-whisper-rs
#### It is a rust crate for easily implementing Speech-To-Text into your rust programs.
### Python api:
[faster-whisper](https://github.com/SYSTRAN/faster-whisper)### Install Rust
[Install Rust](https://www.rust-lang.org/tools/install)
On Linux or MacOS:
```
curl --proto '=https' --tlsv1.2 -ssf https://sh.rustup.rs | sh
```
### Example of making a transcript```Rust
use std::error::Error;
use faster-whisper-rs::WhisperModel;fn main() -> Result<(), Box>{
let fw = WhisperModel::default();
let transcript = fw.transcribe("Path to file".to_string())?;println!("{}", transcript);
Ok(())
}```
## ContributingPull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.## License
[MIT](https://choosealicense.com/licenses/mit/)