Download videos from LinkedIn posts
Built from client requests originating in OpenClaw. A fast, zero-dependency Go CLI that downloads videos embedded in public LinkedIn posts. Paste the URL, it gives you the .mp4. No auth, no API keys, no session cookies — just the post URL and the LinkedIn CDN.
LinkedIn doesn't expose a download button on video posts, and most third-party tools either require a login, ship a heavy Electron shell, or charge for what amounts to one HTTP request. None of that is what you want when you're saving a video for a deck, archiving a talk, or pulling a batch of clips offline.
A tiny Go binary that fetches the public post HTML with browser-like headers, then extracts video URLs from LinkedIn's CDN (`dms.licdn.com`) using multiple patterns — direct MP4 URLs, URL-encoded and unicode-escaped variants, `contentUrl` fields in JSON-LD, and `src` attributes inside embedded JSON. It picks the best quality available and downloads to a temp file (renaming on completion) so an interrupted run never leaves a corrupted partial.
- 01Zero dependenciesGo standard library only. `go install` and you're done — no module tree to audit, no surprise transitive deps.
- 02No authOnly works on public posts — by design. If a video is gated behind a login, this tool won't fetch it. The constraint keeps the surface area honest.
- 03Multi-strategy extractionParses direct MP4 URLs, URL-encoded and unicode-escaped variants, JSON-LD `contentUrl`, and `src` attributes in embedded JSON. Picks the best quality available.
- 04Safe downloadsWrites to a temp file and renames on completion. An interrupted download never leaves a half-written .mp4 in your working directory.
- 05Live progress barReal-time progress with percentage and bytes transferred — built with stdlib formatting, no external TUI library.
- 06Auto-named filesFilenames are derived from the post slug, so a batch of downloads stays sorted and traceable without manual renaming.
