@remotion/install-whisper-cpp 4.0.216 → 4.0.218

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.
@@ -1,5 +1,5 @@
1
1
  import type { TranscriptionJson } from './transcribe';
2
- export type Caption = {
2
+ export type ConvertToCaptionCaption = {
3
3
  text: string;
4
4
  startInSeconds: number;
5
5
  };
@@ -12,5 +12,5 @@ export declare function convertToCaptions({ transcription, combineTokensWithinMi
12
12
  transcription: TranscriptionJson<true>['transcription'];
13
13
  combineTokensWithinMilliseconds: number;
14
14
  }): {
15
- captions: Caption[];
15
+ captions: ConvertToCaptionCaption[];
16
16
  };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { Caption, convertToCaptions } from './convert-to-captions';
1
+ export { ConvertToCaptionCaption, convertToCaptions, } from './convert-to-captions';
2
2
  export type { OnProgress } from './download';
3
3
  export { WhisperModel, downloadWhisperModel } from './download-whisper-model';
4
4
  export { installWhisperCpp } from './install-whisper-cpp';
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.216",
6
+ "version": "4.0.218",
7
7
  "description": "Helpers for installing and using Whisper.cpp",
8
8
  "main": "dist/index.js",
9
9
  "sideEffects": false,
@@ -16,7 +16,7 @@
16
16
  "author": "Jonny Burger <jonny@remotion.dev>",
17
17
  "license": "SEE LICENSE IN LICENSE.md",
18
18
  "dependencies": {
19
- "@remotion/captions": "4.0.216"
19
+ "@remotion/captions": "4.0.218"
20
20
  },
21
21
  "peerDependencies": {},
22
22
  "devDependencies": {},