Scarica VidBee
Completamente gratuito. Nessuna registrazione o account richiesti.
macOS
Scegli l'installer adatto all'hardware del tuo Mac.
Apple Silicon (arm64)
Serie M1, M2, M3Intel (x64)
Per Mac basati su IntelWindows
Programma di installazione con aggiornamenti automatici o una versione portatile senza installazione.
Installer (.exe)
Include supporto per aggiornamenti automaticiPortatile (.exe)
Senza installazione · si avvia da USBLinux
Scegli il pacchetto più adatto alla tua distribuzione.
AppImage
Funziona sulla maggior parte delle distribuzioniDebian / Ubuntu (.deb)
Per distribuzioni basate su DebianAndroid
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.
Recuperato automaticamente da GitHub What is VidBee?
Nota sullo sviluppo
VidBee è ancora nelle fasi iniziali di sviluppo e lo stiamo migliorando attivamente. Se riscontri problemi, condividi il tuo feedback.
Guida all'uso di Docker
Dopo aver creato docker-compose.yml , esegui docker compose up -d nella stessa cartella per avviare i servizi.
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: