Download VidBee – Official Installers
Get official VidBee desktop installers for macOS, Windows, and Linux from GitHub Releases. See the latest version, platform builds, checksums, and Android community APK notes.
New to yt-dlp? See how VidBee works as a friendly yt-dlp GUI for Mac and Windows .
macOS
Choose the installer that matches your Mac hardware.
Apple Silicon (arm64)
M1, M2, M3 seriesIntel (x64)
Intel-based MacsWindows
Standard installer for Windows 10 and later.
Installer (.exe)
Includes auto-update supportLinux
Pick the package that works best for your distribution.
AppImage
Works on most distributionsDebian / Ubuntu (.deb)
For Debian-based distributionsAndroid
Community maintainedThe VidBee APK for Android is a separate Flutter project maintained by the community. It is not an official desktop release from the core VidBee repository.
Official download source
Desktop installers on this page come from the official nexmoe/VidBee GitHub Releases feed. Verify the version above, pick your platform build, and use the SHA-256 hash when your workflow requires it.
- Official VidBee desktop builds cover macOS, Windows 10 and later, AppImage, and Debian / Ubuntu packages. They are maintained in the main VidBee repository.
- VidBee does not support DRM-protected content. Download only media you have the right to access, and follow platform terms plus local laws.
Installers are fetched automatically from GitHub Releases What is VidBee?
Development note
VidBee is still early in development and we're actively improving it. If you run into any issues, please share your feedback.
No downloads currently available.
Docker setup guide
Create docker-compose.yml , then run docker compose up -d in the same directory to start the services.
services:
api:
image: ghcr.io/nexmoe/vidbee-api:latest
environment:
VIDBEE_API_HOST: 0.0.0.0
VIDBEE_API_PORT: 3100
VIDBEE_DOWNLOAD_DIR: /data/downloads
VIDBEE_HISTORY_STORE_PATH: /data/vidbee/vidbee.db
ports:
- "3100:3100"
volumes:
- vidbee-downloads:/data/downloads
- vidbee-data:/data/vidbee
restart: unless-stopped
web:
image: ghcr.io/nexmoe/vidbee-web:latest
depends_on:
- api
ports:
- "3000:3000"
restart: unless-stopped
volumes:
vidbee-downloads:
vidbee-data: