VidBee 다운로드
완전 무료입니다. 가입이나 계정이 필요 없습니다.
macOS
Mac 하드웨어에 맞는 설치 프로그램을 선택하세요.
Windows
자동 업데이트를 지원하는 설치 버전 또는 설치가 필요 없는 포터블 버전.
Linux
배포판에 가장 적합한 패키지를 선택하세요.
Android
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.
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: