
Youtube Transcript
- 1 installs
- Updated April 17, 2026
- hamsterider-m/personal-skills
Takes a YouTube URL and returns standardized subtitle or transcript text for the video.
About
Extracts subtitles or audio transcription from a YouTube video following the content-bridge standard interface. A developer uses it to turn a video URL into text for summarization or research.
- Input a YouTube URL, get normalized transcript text
- Follows the content-bridge standard interface
Youtube Transcript by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,981 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/hamsterider-m/personal-skills --skill youtube-transcriptAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | April 17, 2026 |
| Repository | hamsterider-m/personal-skills ↗ |
What it does
Takes a YouTube URL and returns standardized subtitle or transcript text for the video.
Files
YouTube 转录器
从 YouTube 视频提取字幕或音频转录。
接口
遵循 content-bridge 标准接口
使用
youtube-transcript "https://youtube.com/watch?v=xxx"#!/usr/bin/env python3
"""YouTube transcript extractor"""
import sys
import json
from datetime import datetime
def extract(url, options=None):
"""Extract transcript from YouTube URL"""
options = options or {}
try:
# TODO: Implement YouTube transcript extraction
# For now, return placeholder
return {
"content": f"# YouTube Transcript\n\nURL: {url}\n\n(Implementation pending)",
"metadata": {
"source": url,
"title": "YouTube Video",
"date": datetime.now().isoformat(),
"extractor": "youtube-transcript"
},
"status": "success"
}
except Exception as e:
return {
"content": "",
"metadata": {},
"status": "error",
"error": str(e)
}
if __name__ == "__main__":
if len(sys.argv) < 2:
print("Usage: youtube-transcript <url>")
sys.exit(1)
result = extract(sys.argv[1])
print(json.dumps(result, indent=2, ensure_ascii=False))
Related skills
Automation & Workflowsresearch