تنزيل VidBee

مجاني تمامًا. لا يلزم تسجيل أو حساب.

تم تجاوز حد معدل GitHub API. يرجى المحاولة مرة أخرى لاحقًا أو التنزيل مباشرة من GitHub.

macOS

اختر المثبت الذي يطابق أجهزة Mac الخاصة بك.

Apple Silicon (arm64)

M1 و M2 و M3
تنزيل مجاني من GitHub Releases

Intel (x64)

أجهزة Mac القائمة على Intel
تنزيل مجاني من GitHub Releases

Windows

مُثبِّت مع تحديثات تلقائية، أو نسخة محمولة بدون تثبيت.

المثبت (.exe)

يتضمن دعم التحديث التلقائي
تنزيل مجاني من GitHub Releases

محمول (.exe)

بدون تثبيت · يعمل من USB
تنزيل مجاني من GitHub Releases

Linux

اختر الحزمة التي تعمل بشكل أفضل مع توزيعتك.

AppImage

يعمل على معظم التوزيعات
تنزيل مجاني من GitHub Releases

Debian / Ubuntu (.deb)

للتوزيعات القائمة على Debian
تنزيل مجاني من GitHub Releases

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 في مرحلة تطوير مبكرة ونحن نحسّنه باستمرار. إذا واجهت أي مشكلة، يرجى مشاركة ملاحظاتك.

No downloads currently available.

دليل 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.

عرض جميع الإصدارات