UNPKG

@remotion/install-whisper-cpp

Version:

Helpers for installing and using Whisper.cpp

19 lines (18 loc) 1.25 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.convertToCaptions = exports.transcribe = exports.toCaptions = exports.installWhisperCpp = exports.downloadWhisperModel = void 0; const download_whisper_model_1 = require("./download-whisper-model"); Object.defineProperty(exports, "downloadWhisperModel", { enumerable: true, get: function () { return download_whisper_model_1.downloadWhisperModel; } }); const install_whisper_cpp_1 = require("./install-whisper-cpp"); Object.defineProperty(exports, "installWhisperCpp", { enumerable: true, get: function () { return install_whisper_cpp_1.installWhisperCpp; } }); const to_captions_1 = require("./to-captions"); Object.defineProperty(exports, "toCaptions", { enumerable: true, get: function () { return to_captions_1.toCaptions; } }); const transcribe_1 = require("./transcribe"); Object.defineProperty(exports, "transcribe", { enumerable: true, get: function () { return transcribe_1.transcribe; } }); const convert_to_captions_1 = require("./convert-to-captions"); /** * * @deprecated convertToCaptions() has been deprecated as of Remotion v4.0.216. * Use the toCaptions() function instead. */ exports.convertToCaptions = convert_to_captions_1.convertToCaptions;