Skip to main content

Videx

A private, local-first download manager powered by yt-dlp. Use it from your terminal or browser while your media and credentials stay on your machine.

Videx is a free, MIT-licensed local download manager for video, audio, playlists, and subtitles. It provides a guided CLI, scriptable commands, a persistent download queue, and a browser app connected to a companion running only on your computer. Videx uses yt-dlp and FFmpeg as local engine dependencies.

Why Videx

  • Local by design. Downloads, URLs, cookies, history, and media never pass through a Videx server.
  • Friendly defaults. Paste a URL and choose a quality without learning yt-dlp flags.
  • Powerful when needed. Playlists, audio extraction, subtitles, clips, SponsorBlock, retries, presets, and batch jobs remain available.
  • One engine. The CLI and browser use the same validated plans and SQLite queue.
  • No account, subscription, cloud storage, analytics, or advertisements.

Videx supports many compatible sources through its local engine. Compatibility can change as source sites change. DRM-protected material, bypassing access restrictions, and unauthorized copying are not supported.

Use Videx only for media you own or are authorized to save. Videx does not grant rights to third-party content or override a platform's terms.

Install

Windows

Review and run install.ps1, or use this PowerShell command:

irm https://raw.githubusercontent.com/ws0x/Videx/main/install.ps1 | iex

The release binary is currently unsigned, so Windows SmartScreen may show a warning. Every release includes a SHA-256 checksum, and the installer verifies it before installation.

Install FFmpeg when prompted, then open a new terminal:

videx doctor
videx web

Linux

curl -fsSL https://raw.githubusercontent.com/ws0x/Videx/main/install.sh | bash
videx doctor
videx web

For an optional user service:

VIDEX_INSTALL_SERVICE=1 curl -fsSL https://raw.githubusercontent.com/ws0x/Videx/main/install.sh | bash

Python

python -m pip install "videx-local[web]"

Python 3.10 or newer is required. FFmpeg is required for merging streams, conversion, thumbnails, and subtitle embedding. aria2c is optional.

Browser app

Run:

videx web

Videx starts an authenticated companion on 127.0.0.1:8765 and opens the static app hosted on Vercel. The connection token is placed in the URL fragment, which browsers do not send to the web host. The app talks directly to the loopback companion.

Chrome may ask for Local Network Access permission. This permission only allows the static page to reach the Videx companion on your computer. If a browser or policy blocks that connection, run videx web --local to open the identical PWA directly from the companion.

The companion refuses non-loopback binding. Requests require a local bearer token and an approved web origin. Set VIDEX_WEB_ORIGINS to a comma-separated list when developing a fork.

The browser app supports:

  • URL preview and available quality discovery
  • Video and audio downloads
  • Playlist, subtitle, clip, SponsorBlock, retry, and archive controls
  • Live queue progress
  • Cancellation, retry, removal, and opening output folders
  • Exact output-file downloads
  • Offline app-shell caching

CLI examples

videx
videx https://example.com/video -q 1080
videx https://example.com/video --audio -f mp3
videx add https://example.com/video -q 720
videx jobs --json
videx job JOB_ID --json
videx cancel JOB_ID
videx formats https://example.com/video
videx daemon start
videx doctor --json
videx update

Run videx --help or videx <command> --help for the complete option list.

Configuration and local data

Configuration precedence is CLI flags, environment variables, config file, then defaults.

  • Config: ~/.config/videx/config.toml
  • Data and queue: ~/.local/share/videx
  • Default downloads: ~/Downloads/videx

Override these with VIDEX_CONFIG_DIR, VIDEX_DATA_DIR, and VIDEX_OUTPUT_DIR.

Videx checks GitHub Releases at most once every 24 hours when interactive mode starts. It only displays a notice. It never installs an update without approval. Set VIDEX_NO_UPDATE_CHECK=1 to disable this request.

Development

python -m venv .venv
# Windows: .venv\Scripts\activate
# Linux: source .venv/bin/activate
pip install -e ".[dev,web]"
pytest
ruff check videx tests
mypy videx

cd webui
npm ci
npm run build

Required tests never contact media websites. Network extractors are mocked or served by local fixtures.

See CONTRIBUTING.md, SECURITY.md, PRIVACY.md, ROADMAP.md, and the architecture, API, and release guides.

License

MIT. See LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

videx_local-1.0.5.tar.gz (74.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

videx_local-1.0.5-py3-none-any.whl (81.0 kB view details)

Uploaded Python 3

File details

Details for the file videx_local-1.0.5.tar.gz.

File metadata

  • Download URL: videx_local-1.0.5.tar.gz
  • Upload date:
  • Size: 74.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for videx_local-1.0.5.tar.gz
Algorithm Hash digest
SHA256 de60b6cd299e83aa08dfd3d4459c89ffa659b5f164bc8772296e923a836e7c08
MD5 f9295bc66463126730579b0f0f754aca
BLAKE2b-256 395aecd3c993f8e0f254cc5c12820135908e30ecf1d72cca9e35a4e8cdaa4ca8

See more details on using hashes here.

Provenance

The following attestation bundles were made for videx_local-1.0.5.tar.gz:

Publisher: release-pypi.yml on ws0x/Videx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file videx_local-1.0.5-py3-none-any.whl.

File metadata

  • Download URL: videx_local-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for videx_local-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 9b3e0fec7a635cec98391017d1265cd668b179e9986104375e4f8e509a6478cf
MD5 255b289f07394cba4cee17f99a5c5af1
BLAKE2b-256 4662c307e0a73ccd52deb2728e17cda573bebfa3d737be4813d551eba245e3e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for videx_local-1.0.5-py3-none-any.whl:

Publisher: release-pypi.yml on ws0x/Videx

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.0.9

2 files

1.0.8

2 files

1.0.7

2 files

1.0.6

2 files

This release

1.0.5 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page