Agent skill
media-transcript-search
Extract and search transcripts from multimedia sources (primarily YouTube). Allows finding specific topics within long content without watching the whole video.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/media-transcript-search-joshuaroll-research-skills-2
SKILL.md
Multimedia Transcript Search Skill
This skill turns opaque video content into searchable text data, essential for analyzing speeches, lectures, and news clips.
Capabilities
- Get Transcript: Download the full transcript of a YouTube video.
- Keyword Search: Find timestamps where specific keywords or phrases are mentioned.
- Context Window: Return surrounding text to understand the context of the mention.
Usage
Run the python script get_transcript.py.
Arguments
video_id(required): The YouTube Video ID (e.g.,dQw4w9WgXcQ).--search(optional): Keyword to find.--lang(optional): Language code (default 'en').
Example
# Get full transcript for a video
python3 get_transcript.py dQw4w9WgXcQ
# Find where "climate change" is discussed
python3 get_transcript.py dQw4w9WgXcQ --search "climate change"
Dependencies
This skill requires the youtube-transcript-api library.
pip install youtube-transcript-api
Output Format
A JSON object containing:
video_idtranscript: Full list of segments (if no search) ORmatches: List of segments matching the search term:text: The text segment.start: Start time (seconds).duration: Duration of segment.url: Direct URL to timestamp (e.g.,https://youtu.be/ID?t=123).
Tips for the Agent
- Fuzzy Matching: The search is simple case-insensitive matching.
- Timestamps: Always provide the
urlwith the timestamp so the user can verify the context immediately.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?