sharepoint-teams-video-transcript-downloader

sharepoint-teams-video-transcript-downloader is a skill for Claude Code, Codex from rumotion/ai-agent-project-template. It costs 76 tokens per session (1,315 once invoked), scanned A, original, MIT.

A workflow for downloading Microsoft Teams or SharePoint Stream recordings together with complete speaker-labelled transcripts and subtitle files.

In plain words
What is it for?
Use it to retrieve authenticated meeting videos as MP4 files and transcripts as TXT or SRT files, including recordings with virtualized transcript cues.
Why use it?
It handles cases where normal downloads are unavailable and preserves the recording's full length and native playback speed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit Use it to retrieve authenticated meeting videos as MP4 files and transcripts as TXT or SRT files, including recordings with virtualized transcript cues.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add rumotion/ai-agent-project-template --skill sharepoint-teams-video-transcript-downloader
Clone the repo
git clone --depth 1 https://github.com/rumotion/ai-agent-project-template

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for sharepoint-teams-video-transcript-downloader

README.md
[![agentmods](https://agentmods.dev/badge/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader/github.svg)](https://agentmods.dev/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader)
Your own site
<a href="https://agentmods.dev/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader"><img src="https://agentmods.dev/badge/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sharepoint-teams-video-transcript-downloader

Your own site · 80×15
<a href="https://agentmods.dev/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader"><img src="https://agentmods.dev/badge/skills/rumotion/ai-agent-project-template/sharepoint-teams-video-transcript-downloader.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,315 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00076 $0.01315
Opus 5 $0.00038 $0.00658
Sonnet 5 $0.00015 $0.00263
Haiku 4.5 $0.00008 $0.00131

Measured 11d ago against content hash f456ce34257d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

sharepoint-teams-video-transcript-downloader scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/download_sharepoint_stream.py, scripts/harvest_sharepoint_transcript.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/sharepoint-teams-video-transcript-downloader/SKILL.md · 99 lines

How it starts

The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.

SharePoint / Teams Video & Transcript Downloader

Use this skill when a user wants to download a Microsoft Teams meeting recording or video hosted on SharePoint / Stream, along with its complete, full-length speaker-annotated transcript and subtitles.


Technical Overview & Solutions Solved

  1. Authentication & Session Persistence:
    • Stream requires SharePoint session authentication (rtFa and FedAuth Netscape cookies) or Chrome CDP / Playwright context.
  2. Lossless Video Download & Playback Speed Preservation:
    • When direct download buttons are disabled or DASH manifests (videomanifest?provider=spo...) use DRM / 12-second token expirations, direct segment concatenation can fail or require decryption.
    • Automated Fallback: Uses a headless Playwright Chromium browser context with MediaRecorder (video.captureStream()).
    • CRITICAL SPEED REQUIREMENT: Playback rate MUST be set to STRICT 1.0x native normal speed (v.playbackRate = 1.0;). Setting playbackRate > 1.0 (e.g. 4x or 16x) causes the output stream to encode at accelerated playback rates, making the resulting video play back in fast-forward!
    • Chunks are streamed incrementally to disk every 5 seconds to prevent browser memory exhaustion on long recordings.
    • Converted to .mp4 container via ffmpeg -i temp.webm -c:v copy -c:a copy output.mp4.
  3. Complete 100% Transcript Extraction (No Missing Cues):
    • Direct GET requests to /_api_cached/v2.1/.../cdnmedia/transcripts return raw compressed Brotli stream bytes (b'B\x1c') which fail plain text decoding.
    • Microsoft Stream renders transcript cues inside a virtualized Fluent UI container (.ms-FocusZone / div with scrollHeight > 5000px) that unmounts offscreen DOM nodes as you scroll.
    • Solution: Automated Playwright browser context in MUTED MODE (--mute-audio flag) that navigates to the video page, opens the Transcript side panel, and programmatically scrolls down the virtualized container from 0px to max height (~60,000px), harvesting 100% of speaker cues and timestamps.

Read the full file on GitHub · 99 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 99 lines · 76 tokens per session scan A f456ce34257d

Subscribe to this mod's changes

sharepoint-teams-video-transcript-downloader is a skill published in the GitHub repository rumotion/ai-agent-project-template (1 stars, last pushed 21d ago), licensed MIT. It adds 76 tokens to every session and 1,315 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

data-analysis

DuckDB-powered analytical engine for large data dumps (JSON, CSV, Parquet). Ingest → Profile → Query → File insights.

winstonkoh87/Athena-Public · 30 tokens

documentation-standards

KB conventions: YAML frontmatter, 10-category taxonomy (reference/howto/procedures/troubleshooting/best-practices/decisions/runbooks/planning/business/templates). Triggers: kb/, SOP, runbook, howto, frontmatter, knowledge base.

softspark/ai-toolkit · 60 tokens

docs

Generates/updates README, API docs, architecture notes. Triggers: docs, README, API docs, architecture note, documentation.

softspark/ai-toolkit · 29 tokens

pptx-to-md

Convert a PPTX slide deck into per-slide markdown that preserves both the verbatim text and the meaning of embedded screenshots, diagrams and charts in their original layout positions. Use this skill (over pptx or liteparse) whenever the deliverable is markdown of a deck's content including interpreted visuals.

sammcj/agentic-coding · 64 tokens

glean-cli

Provides knowledge on using the glean CLI tool to access company knowledge and documents through Glean. Use when the user asks you to use Glean to search, read or otherwise access knowledge from their company's Confluence, Slack, Google Drive Files (Slides, Documents, Sheets) etc.

sammcj/agentic-coding · 63 tokens

liteparse

Provides fast document to markdown extraction. Use this skill when the user asks to parse, perform multi-format document conversion or spatially extract text from an unstructured file (PDF, DOCX, PPTX, XLSX, images, etc.) locally.

sammcj/agentic-coding · 53 tokens