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의 전체 릴리스 기록을 확인하세요.

모든 릴리스 보기