Skip to content

v1.1.0

Choose a tag to compare

@michaeljolley michaeljolley released this 04 Nov 19:56
· 471 commits to main since this release
463d777

Added

  • Prerecorded transcription responses can now be used to generate WebVTT and SRT caption files. Example:

    const response = await deepgram.transcription.preRecorded(
      { url: "URL_TO_FILE" },
      {
        punctuate: true,
        utterances: true,
      }
    );
    const webVTT = response.toWebVTT();
    const SRT = response.toSRT();

    The utterances feature is required to use this functionality.