@deepgram/captions
Version:
Node implementation of Deepgram's WebVTT and SRT formatting. Given a transcription, this package can return a valid string to store as WebVTT or SRT caption files.
10 lines • 324 B
TypeScript
declare const webvtt: (transcription: any, lineLength?: number) => string;
declare const srt: (transcription: any, lineLength?: number) => string;
export { webvtt, srt };
/**
* Helpful exports.
*/
export * from "./converters";
export * from "./lib/types";
export * from "./lib/helpers";
//# sourceMappingURL=index.d.ts.map