Install
openclaw skills install yt-transcript-yt-dlpExtract YouTube video transcripts from existing captions (manual or auto-generated) using yt-dlp, with optional timestamps and local SQLite caching. Use when the user asks for a YouTube transcript, captions, subtitles, or wants to turn a YouTube link into text for summarization/search.
openclaw skills install yt-transcript-yt-dlpExtracts transcripts from existing YouTube captions using yt-dlp. Prefers manual subtitles; falls back to auto-generated captions.
yt-dlp installed and on PATH (pip install yt-dlp or system package)Script path: {baseDir}/scripts/yt_transcript.py
# Basic usage
python {baseDir}/scripts/yt_transcript.py <youtube_url_or_id>
# Specify language
python {baseDir}/scripts/yt_transcript.py <url> --lang en
# Plain text output
python {baseDir}/scripts/yt_transcript.py <url> --text
# Text without timestamps
python {baseDir}/scripts/yt_transcript.py <url> --text --no-ts
# Custom cache path
python {baseDir}/scripts/yt_transcript.py <url> --cache /path/to/cache.sqlite
Returns a JSON object:
{
"video_id": "dQw4w9WgXcQ",
"lang": "en",
"source": "manual",
"segments": [
{ "start": 0.0, "duration": 4.2, "text": "We're no strangers to love" }
]
}
--text)Newline-separated transcript lines. Use --no-ts to omit timestamps.
Results are cached in a local SQLite database: {baseDir}/cache/transcripts.sqlite
Subsequent calls for the same video/lang/format are served from cache instantly.
To use a custom cache location: --cache /path/to/transcripts.sqlite
For age-restricted or members-only videos, provide a Netscape-format cookies.txt:
export YT_TRANSCRIPT_COOKIES=/path/to/cookies.txt
python {baseDir}/scripts/yt_transcript.py <url>
# or
python {baseDir}/scripts/yt_transcript.py <url> --cookies /path/to/cookies.txt
Cookies must be stored under ~/.config/yt-transcript/ for security.
pip install yt-dlp or brew install yt-dlp