Install
openclaw skills install @otomazeli/youtube-full-channel-transcriptsExtract transcripts from all videos in a YouTube channel for free (no paid APIs). Uses yt-dlp to discover videos and fetch available subtitles. Saves combined transcripts as structured JSON or CSV.
openclaw skills install @otomazeli/youtube-full-channel-transcriptsFree, local alternative to Apify actor — no third-party paid APIs.
Fetches all videos from a YouTube channel (or playlist), extracts available transcripts (auto-generated or manual), and exports to JSON/CSV.
yt-dlp installed (https://github.com/yt-dlp/yt-dlp)jq installed (for JSON processing)# Basic: fetch all transcripts from a channel
youtube_full_channel_transcripts channel_url="https://www.youtube.com/@SomeChannel" output_format="json"
# With filters
youtube_full_channel_transcripts channel_url="https://www.youtube.com/c/ChannelName" max_videos=50 languages="en" include_auto_generated=true
| Parameter | Type | Required | Description |
|---|---|---|---|
channel_url | string | yes | YouTube channel URL, handle, or playlist URL |
output_format | string | no | Output format: json (default) or csv |
max_videos | integer | no | Limit number of videos to process (default: all) |
languages | string | no | Comma-separated language codes (e.g., en,es). Default: en |
include_auto_generated | boolean | no | Include auto-generated transcripts? (default: true) |
output_dir | string | no | Directory to save results (default: workspace/exports/youtube-transcripts) |
transcripts.json or transcripts.csv — structured data with:
{
"video_id": "abc123",
"title": "Video Title",
"url": "https://youtube.com/watch?v=abc123",
"upload_date": "20240322",
"duration": 360,
"language": "en",
"transcript": "Full text...",
"is_auto_generated": false
}
yt-dlp --flat-playlist -J to list all videosyt-dlp --write-subs --sub-format srt --skip-download per video--sleep-interval if neededmax_videos to limit.