@remotion/install-whisper-cpp 4.0.414 → 4.0.415

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,14 @@
1
- export { ConvertToCaptionCaption, convertToCaptions, } from './convert-to-captions';
1
+ export { ConvertToCaptionCaption } from './convert-to-captions';
2
2
  export type { OnProgress } from './download';
3
- export { WhisperModel, downloadWhisperModel } from './download-whisper-model';
3
+ export { downloadWhisperModel, WhisperModel } from './download-whisper-model';
4
4
  export { installWhisperCpp } from './install-whisper-cpp';
5
5
  export type { Language } from './languages';
6
6
  export { toCaptions } from './to-captions';
7
- export { TranscribeOnProgress, TranscriptionJson, transcribe, } from './transcribe';
7
+ export { transcribe, TranscribeOnProgress, TranscriptionJson, } from './transcribe';
8
+ import { convertToCaptions as deprecatedConvertToCaptions } from './convert-to-captions';
9
+ /**
10
+ *
11
+ * @deprecated convertToCaptions() has been deprecated as of Remotion v4.0.216.
12
+ * Use the toCaptions() function instead.
13
+ */
14
+ export declare const convertToCaptions: typeof deprecatedConvertToCaptions;
package/dist/index.js CHANGED
@@ -1,8 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.transcribe = exports.toCaptions = exports.installWhisperCpp = exports.downloadWhisperModel = exports.convertToCaptions = void 0;
4
- var convert_to_captions_1 = require("./convert-to-captions");
5
- Object.defineProperty(exports, "convertToCaptions", { enumerable: true, get: function () { return convert_to_captions_1.convertToCaptions; } });
3
+ exports.convertToCaptions = exports.transcribe = exports.toCaptions = exports.installWhisperCpp = exports.downloadWhisperModel = void 0;
6
4
  var download_whisper_model_1 = require("./download-whisper-model");
7
5
  Object.defineProperty(exports, "downloadWhisperModel", { enumerable: true, get: function () { return download_whisper_model_1.downloadWhisperModel; } });
8
6
  var install_whisper_cpp_1 = require("./install-whisper-cpp");
@@ -11,3 +9,10 @@ var to_captions_1 = require("./to-captions");
11
9
  Object.defineProperty(exports, "toCaptions", { enumerable: true, get: function () { return to_captions_1.toCaptions; } });
12
10
  var transcribe_1 = require("./transcribe");
13
11
  Object.defineProperty(exports, "transcribe", { enumerable: true, get: function () { return transcribe_1.transcribe; } });
12
+ const convert_to_captions_1 = require("./convert-to-captions");
13
+ /**
14
+ *
15
+ * @deprecated convertToCaptions() has been deprecated as of Remotion v4.0.216.
16
+ * Use the toCaptions() function instead.
17
+ */
18
+ exports.convertToCaptions = convert_to_captions_1.convertToCaptions;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/install-whisper-cpp"
4
4
  },
5
5
  "name": "@remotion/install-whisper-cpp",
6
- "version": "4.0.414",
6
+ "version": "4.0.415",
7
7
  "description": "Helpers for installing and using Whisper.cpp",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,