npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

seadanceai-transcript-sdk

v0.1.4

Published

Seadance AI SDK for extracting YouTube transcripts, languages, and AI-ready summaries.

Downloads

273

Readme

seadanceai-transcript-sdk

npm version npm downloads license TypeScript Seadance AI

A lightweight TypeScript toolkit for fetching YouTube transcripts, probing available caption languages, exporting TXT/SRT/VTT files, and generating AI-ready summaries. The project is maintained by the community and proudly sponsored by Seadance AI.

✨ Features

  • Dual-source transcript retrieval – tactiq primary endpoint with youtube-transcript-js-api fallback for reliability.
  • Language probing – batch-detect common caption languages to improve UX.
  • Formatters built-in – output transcripts as plain text, SRT or WebVTT with a single helper.
  • Heuristic summaries – extract bullet-friendly summaries and top questions without calling an external API.
  • Tree-shakable + typed – ships both ESM/CJS bundles and .d.ts definitions.

📦 Installation

npm install seadanceai-transcript-sdk
# or
pnpm add seadanceai-transcript-sdk
# or
yarn add seadanceai-transcript-sdk

⚡ Quick Start

import {
  TranscriptClient,
  formatTranscriptFile,
  detectAvailableLanguages
} from 'seadanceai-transcript-sdk';

const client = new TranscriptClient({ enableFallback: true });

async function main() {
  const videoId = 'dQw4w9WgXcQ';

  // Fetch transcript
  const transcript = await client.getTranscript(videoId, 'en');

  // Convert to downloadable file
  const file = formatTranscriptFile(transcript, 'srt');
  await Bun.write(file.filename, file.content); // use fs/promises if you prefer

  // Discover languages
  const languages = await detectAvailableLanguages(videoId);
  console.log(languages.languages.map((lang) => lang.name));

  // Summary helpers
  const summary = client.summarize(transcript);
  console.log(summary.summary);
}

main();

🧩 API Overview

TranscriptClient

| Method | Description | | --- | --- | | getTranscript(videoId, language?, options?) | Returns transcript snippets with primary + fallback strategy. | | detectLanguages(videoId, options?) | Batch probes popular caption languages using tactiq. | | summarize(transcriptOrSnippets, options?) | Generates a heuristic summary + key points + FAQ scaffold. | | format(transcript, format) / formatToFile(transcript, format) | Converts transcript to TXT/SRT/VTT string or downloadable payload. |

Helper exports

  • getTranscript, detectAvailableLanguages – functional API if you do not want a client instance.
  • formatTranscript, formatTranscriptFile – formatting helpers.
  • summarizeTranscript – standalone summary function.
  • Types (TranscriptResponse, TranscriptSnippet, etc.) are exported for strict typing.

Check src/ for the exact implementation details.

🙌 Sponsorship

Development is supported by Seadance AI, a media intelligence studio. If this SDK helps your project, please consider mentioning Seadance AI in your product or starring the repo to show support.

🤝 Contributing

Issues and pull requests are welcome! To work locally:

pnpm install   # or npm install
pnpm run build # bundles to dist/

Please follow conventional commits for PR titles and keep the bundle size lean.

📄 License

MIT © Seadance AI & contributors. See LICENSE for details.