Download VidBee

Latest version v1.3.10
Published Apr 11, 2026, 8:51 AM
View release on GitHub

macOS

Choose the installer that matches your Mac hardware.

Apple Silicon (arm64)

M1, M2, M3 series

Intel (x64)

Intel-based Macs

Windows

Standard installer for Windows 10 and later.

Installer (.exe)

Includes auto-update support

Linux

Pick the package that works best for your distribution.

AppImage

Works on most distributions

Debian / Ubuntu (.deb)

For Debian-based distributions

Android

Community maintained

VidBee APK for Android is a separate Flutter project maintained by the community. Not affiliated with the core VidBee desktop build.

View on GitHub

Development note

VidBee is still early in development and we're actively improving it. If you run into any issues, please share your feedback.

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:

Need something else?

Looking for source code or older releases? Visit the complete release history on GitHub.

View all releases