VidBee herunterladen

Vollständig kostenlos. Keine Registrierung und kein Konto erforderlich.

Neueste Version v1.3.14
Veröffentlicht 05.07.2026, 04:36
Release auf GitHub anzeigen

macOS

Wählen Sie den Installer, der zu Ihrer Mac-Hardware passt.

Apple Silicon (arm64)

M1-, M2-, M3-Serie

Intel (x64)

Für Intel-basierte Macs

Windows

Installer mit automatischen Updates oder eine portable Version ohne Installation.

Installer (.exe)

Unterstützt automatische Updates

Portable Version (.exe)

Keine Installation · läuft von USB

Linux

Wählen Sie das Paket, das am besten zu Ihrer Distribution passt.

AppImage

Funktioniert auf den meisten Distributionen

Debian / Ubuntu (.deb)

Für Debian-basierte Distributionen

Android

Community maintained

The 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.

Community Android APK on GitHub

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.

Automatisch von GitHub abgerufen What is VidBee?

Entwicklungshinweis

VidBee befindet sich noch in einer frühen Entwicklungsphase und wir verbessern es aktiv. Wenn Sie auf Probleme stoßen, senden Sie uns bitte Ihr Feedback.

Docker-Einrichtungsanleitung

Erstelle docker-compose.yml und führe dann im selben Verzeichnis docker compose up -d aus, um die Dienste zu starten.

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:

Brauchen Sie etwas anderes?

Sie suchen den Quellcode oder ältere Versionen? Besuchen Sie die vollständige Release-Historie auf GitHub.

Alle Releases anzeigen