تخطَّ إلى المحتوى
yt-dlp

تثبيت yt-dlp على macOS

ثبِّت yt-dlp وffmpeg على macOS باستخدام Homebrew أو pipx، وحافظ على تحديثهما.

لم تُترجَم هذه المقالة بعد، لذا تظهر بالإنجليزية. أما الواجهة فتبقى بلغتك.

1. Install yt-dlp

Homebrew is the path of least resistance and installs both tools in one line.

brew install yt-dlp ffmpeg

Without Homebrew, pipx keeps yt-dlp in its own environment so it cannot collide with anything else you have installed through Python.

pipx install yt-dlp

Avoid a bare pip install into the system Python: recent macOS releases push back on it, and when it does work it tends to break later for unrelated reasons.

2. Install ffmpeg

Included above if you used Homebrew. Otherwise install it separately — merging, MP3 extraction and embedding all depend on it.

brew install ffmpeg

3. Check it worked

yt-dlp --version
ffmpeg -version

If the shell cannot find yt-dlp after a pipx install, run pipx ensurepath and open a new terminal.

Cookies from Safari

--cookies-from-browser safari needs Full Disk Access for your terminal, granted in System Settings → Privacy & Security. Without it the read fails with a permissions error that does not mention the setting. Chrome and Firefox work without it.

Updating

brew upgrade yt-dlp     # Homebrew
pipx upgrade yt-dlp     # pipx

الأسئلة الشائعة

لا يجد macOS برنامج yt-dlp بعد التثبيت عبر pipx.
نفّذ pipx ensurepath، ثم افتح طرفية جديدة كي يُعتمد مسار PATH المحدَّث.
هل أحتاج شيئًا إضافيًا للكوكيز على macOS؟
لمتصفح Safari فقط: يحتاج ‎--cookies-from-browser safari صلاحية Full Disk Access لطرفيتك، من System Settings ← Privacy & Security. أما Chrome وFirefox فيعملان من دونها.
كيف أحدّث yt-dlp؟
الملف التنفيذي المستقل يحدّث نفسه بالأمر yt-dlp -U. أما المثبَّت عبر مدير حزم فحدِّثه بذلك المدير؛ فالتحديث الذاتي يرفض تعديل ملف لا يملكه. والتحديث يحل من المشكلات أكثر مما يحله أي خيار منفرد.