下載 VidBee

完全免費,無需註冊,無需帳號。

最新版本 v1.3.14
發布時間 2026年7月5日 凌晨4:36
在 GitHub 查看版本

macOS

根據你的 Mac 硬體選擇對應的安裝檔。

Apple 晶片 (arm64)

適用於 M1、M2、M3 系列

Intel (x64)

適用於基於 Intel 的 Mac

Windows

可自動更新的安裝版,或免安裝的便攜版。

安裝程式 (.exe)

包含自動更新支援

免安裝版 (.exe)

免安裝 · 可從 USB 隨身碟執行

Linux

根據你的發行版選擇最合適的安裝檔。

AppImage

適用於大多數發行版

Debian / Ubuntu (.deb)

適用於 Debian 系發行版

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.

從 GitHub 自動取得 What is VidBee?

開發提示

VidBee 仍在早期開發階段,我們正積極改進。若遇到問題,請及時回饋。

Docker 使用指南

建立 docker-compose.yml 後,在同一目錄執行 docker compose up -d 即可啟動服務。

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:

需要其他資源?

想找原始碼或歷史版本?請造訪 GitHub 上完整的發布歷史。

查看所有發布版