Skip to content

a rust crate for easily implementing faster-whisper stt into your rust programs.

Notifications You must be signed in to change notification settings

CodersCreative/faster-whisper-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

faster-whisper-rs

It is a rust crate for easily implementing Speech-To-Text into your rust programs.

Python api:

faster-whisper

Install Rust

Install Rust

On Linux or MacOS:

curl --proto '=https' --tlsv1.2 -ssf https://sh.rustup.rs | sh

Example of making a transcript

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(())
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

About

a rust crate for easily implementing faster-whisper stt into your rust programs.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages