Extract video URLs from web pages and generate curl download commands
Project description
vidurl
A more powerful, cleverer yt-dlp. Given any web page — a single-video page, a thumbnail-grid listing, or something obscure yt-dlp doesn't know about — vidurl downloads the videos.
How it works
Three-tier escalation per URL, cheapest first:
- yt-dlp handles whatever it can natively (thousands of sites, including playlists/channels).
- Playwright loads the page and sniffs the rendered DOM, JS, network responses, and embedded iframes for a video URL — then downloads with
curl. For listing pages, vidurl scrapes the DOM for video-page links and recurses. - LLM (optional, opt-in) — when the heuristics fail, vidurl can ask a large language model (via scrapegraphai) to identify the video URL or video-page links on the rendered DOM.
Installation
Quick — run from PyPI with uvx
No clone, no install step:
uvx --from vidurl playwright install chromium # one-time: install the browser
uvx vidurl <URL> # run from PyPI in an ephemeral env
For the LLM tier (pulls in scrapegraphai on the fly):
uvx --from 'vidurl[llm]' vidurl <URL> \
--llm-provider ollama --llm-model qwen2.5:7b-instruct
Playwright caches its browser binaries under ~/.cache/ms-playwright/, so the one-time playwright install chromium is shared across uvx invocations.
Persistent install
uv tool install vidurl # or: pip install vidurl
playwright install chromium
With the LLM extra: uv tool install 'vidurl[llm]' (or pip install 'vidurl[llm]').
Development clone
git clone https://github.com/gfrmin/vidurl
cd vidurl
uv sync # add --extra llm to include scrapegraphai
uv run playwright install chromium
yt-dlp and playwright are installed automatically. curl must also be on PATH.
Usage
# yt-dlp does the work
vidurl https://www.youtube.com/watch?v=dQw4w9WgXcQ
# Site yt-dlp doesn't know — Playwright finds the video
vidurl https://example.com/embedded-video-page
# Listing of videos — vidurl visits each link
vidurl https://example.com/gallery
vidurl https://example.com/gallery --listing --link-selector "a.video-card"
# Don't download, just print the commands
vidurl https://example.com/page --dry-run
# Enable LLM fallback
vidurl https://example.com/weird-page \
--llm-provider anthropic --llm-model claude-haiku-4-5
Flags
| Flag | Purpose |
|---|---|
--output-dir / -o DIR |
Where to save files (default: cwd) |
--dry-run |
Print the yt-dlp / curl commands instead of executing |
--no-ytdlp |
Skip the yt-dlp tier; go straight to Playwright |
--ytdlp-args 'STR' |
Extra args appended to the yt-dlp invocation |
--listing |
Force listing mode (skip per-page video extraction) |
--no-listing |
Never recurse into links |
--link-selector CSS |
Use this CSS selector to find video-page links |
--link-pattern REGEX |
Only follow links whose absolute URL matches |
--min-links N |
Minimum links for listing auto-detect (default 3) |
--max-pages N |
Max listing pages to walk (default 10) |
--no-paginate |
Disable pagination — process only the first listing page |
--next-selector CSS |
CSS selector for the next-page link |
--next-pattern REGEX |
Regex; treat as next-page link only if URL matches |
--page-url-template URL |
URL template with {n}; vidurl walks 2..max-pages |
--llm-provider P |
anthropic, openai, groq, google, ollama, ... |
--llm-model M |
Model id |
--llm-fallback-model M |
Local Ollama model to retry with when the primary LLM refuses |
--no-llm |
Disable the LLM tier even if provider/model are set |
--yes / -y |
Accept the auto-detected LLM pick without prompting |
--no-headless |
Show the browser window |
--timeout S |
Page load timeout (default 15s) |
--verbose / --quiet |
Logging |
LLM tier
The LLM tier is off by default. To enable, pass both --llm-provider and --llm-model (or set them in config.json). API keys are read from environment first, then from gnome-keyring via secret-tool under service=env, key=<PROVIDER_KEY>. If a key is present but provider/model are not set, vidurl logs a hint and stays off — no silent spend.
If you installed the llm extra (pip install 'vidurl[llm]') and don't pass --llm-provider/--llm-model, vidurl auto-detects an available backend and asks before using it. A local Ollama install is preferred over cloud providers; among installed Ollama models, vidurl skips embedding and vision-language families and picks the largest text LLM by parameter count. Pass -y to accept the pick without prompting, or --no-llm to skip detection entirely. Non-TTY runs (pipes, cron) skip the prompt silently unless -y is set.
Handling refusals
Aligned models (Qwen, Llama-Instruct, etc.) sometimes refuse to extract URLs from pages they consider sensitive — silently leaving you with heuristics-only results. Pass --llm-fallback-model <ollama-model> to retry against a local uncensored/abliterated model in that case. vidurl issues a separate classification call (also via Ollama) over the refusal text to confirm it really was a refusal before paying for the retry, so non-refusal misses (a page that genuinely has no video) cost one LLM call, not three.
vidurl https://example.com/page \
--llm-provider ollama --llm-model qwen2.5:7b-instruct \
--llm-fallback-model huihui_ai/qwen2.5-abliterate:7b
If you pull an Ollama model whose name contains abliterate, uncensored, huihui, or dolphin, vidurl's auto-detect will pick it as the fallback automatically — no flag needed.
The fallback only kicks in when --llm-provider is ollama. Make sure the fallback model is already pulled (ollama pull <model>); vidurl will not pull on demand.
Pagination
When a listing page is detected, vidurl walks subsequent pages automatically (capped by --max-pages, default 10). Next-page discovery tries, in order:
<link rel="next">or<a rel="next">.- Anchor text or
aria-labelmatchingNext,›,→,»,More(filtered to avoid "next video" navigation). - URL-template inference (
?page=N,/page/N/,&offset=N, trailing/N), validated with a HEAD/GET probe. - LLM fallback (if the LLM tier is enabled).
Override with --next-selector, --next-pattern, or --page-url-template URL (e.g. https://example.com/list?page={n}). Disable with --no-paginate.
What's intentionally not (yet) supported
- "Load more" buttons and infinite scroll — these need click-and-wait logic without a URL change.
- Parallel downloads of multiple listing-page videos — sequential for now.
Configuration
Pass a JSON file via --config path/to/config.json. See config.example.json for all fields.
Development
uv sync --extra dev
uv run pytest # no tests yet
License
AGPL-3.0-or-later. See LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vidurl-0.5.0.tar.gz.
File metadata
- Download URL: vidurl-0.5.0.tar.gz
- Upload date:
- Size: 42.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fd070934408bf85132691526a5e4aebdf97d9e1457857b4d2374d093ec18891
|
|
| MD5 |
d730ec92702997b381cddc469fb83e4e
|
|
| BLAKE2b-256 |
c404a8709bb7627fc93f4e032598b864e866b75a580a5201bee57f4dc0900ad8
|
File details
Details for the file vidurl-0.5.0-py3-none-any.whl.
File metadata
- Download URL: vidurl-0.5.0-py3-none-any.whl
- Upload date:
- Size: 41.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
161130ed448f21ed4e1a9f756082da26d5d96605d1472fadefc661c1d82846e2
|
|
| MD5 |
a7f9c4e501ee23d9f255afebbad0aa3b
|
|
| BLAKE2b-256 |
79b43a6c15d4d543d498077bb77a28806b0493c69e0c6348de85bd73bd1b26ee
|