VidBee をダウンロード

完全無料。登録不要、アカウント不要。

最新バージョン v1.3.14
公開日 2026/07/05 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 のリリース履歴をご覧ください。

すべてのリリースを見る