video-transcriber-mcp 0.7.0

High-performance video transcription MCP server using whisper.cpp for faster transcription
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::PathBuf;

pub fn get_default_output_dir() -> PathBuf {
    let home = home::home_dir().expect("Could not find home directory");
    home.join("Downloads").join("video-transcripts")
}

pub fn get_models_dir() -> PathBuf {
    let home = home::home_dir().expect("Could not find home directory");
    home.join(".cache")
        .join("video-transcriber-mcp")
        .join("models")
}