UNPKG

subtitles-generator

Version:

Generate subtitles easily with ffmpeg and whisper

4 lines (3 loc) 214 B
import { join } from 'node:path'; import { WHISPER_CPP_MODELS_DIR } from './whisperCPP.constants.js'; export const getWhisperCPPModelFilePath = (modelType) => join(WHISPER_CPP_MODELS_DIR, `ggml-${modelType}.bin`);