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

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

ثبِّت yt-dlp وffmpeg على Windows باستخدام winget أو Scoop أو تنزيل مباشر، وأصلِح أخطاء PATH التي تظهر بعدها.

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

1. Install yt-dlp

winget ships with Windows 10 and 11 and handles the PATH for you, which is the part people get wrong when installing by hand.

winget install yt-dlp.yt-dlp

If you already use Scoop or Chocolatey, either is equally fine:

scoop install yt-dlp
choco install yt-dlp

The manual route is a single yt-dlp.exe from the official releases page. Put it in a folder that is on your PATH — dropping it on the Desktop works only while your terminal happens to be in that folder, which is the usual cause of "yt-dlp is not recognized".

2. Install ffmpeg

yt-dlp downloads without ffmpeg, but everything interesting needs it: merging separate video and audio, MP3 extraction, embedding subtitles or thumbnails, cutting sections. Install it now rather than after the first confusing failure.

winget install Gyan.FFmpeg

3. Check it worked

Open a new terminal — an existing one still has the old PATH — and run:

yt-dlp --version
ffmpeg -version

Two version numbers means you are done.

Quoting on Windows

PowerShell and cmd do not quote the way bash does, and a command copied from a Linux-oriented tutorial often breaks for exactly this reason. In PowerShell, single quotes are literal — the safest choice for a format selector or an output template. In cmd, use double quotes. In a .bat file, every % must be doubled.

yt-dlp -o '%(title)s.%(ext)s' URL     # PowerShell
yt-dlp -o "%(title)s.%(ext)s" URL     # cmd
yt-dlp -o "%%(title)s.%%(ext)s" URL   # inside a .bat file

The generator's shell switch produces the right form for each of these, so you can copy without translating.

Updating

A standalone yt-dlp.exe updates itself with yt-dlp -U. Installed via winget, Scoop or Chocolatey, update it through the same tool — self-update will refuse, because the package manager owns the file.

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

يقول Windows إن yt-dlp غير معروف. لماذا؟
الملف التنفيذي ليس في مسار PATH لديك، أو كانت الطرفية مفتوحة قبل تثبيته. افتح طرفية جديدة أولًا؛ فإن لم ينفع ذلك، ثبّته عبر winget أو Scoop فهما يتوليان أمر PATH نيابة عنك.
لا يجد yt-dlp برنامج ffmpeg على Windows.
ثبّته بالأمر winget install Gyan.FFmpeg، ثم افتح طرفية جديدة وتحقّق بالأمر ffmpeg -version. كما ينفع وضع ffmpeg.exe في المجلد نفسه مع yt-dlp.exe.
كيف أحدّث yt-dlp؟
الملف التنفيذي المستقل يحدّث نفسه بالأمر yt-dlp -U. أما المثبَّت عبر مدير حزم فحدِّثه بذلك المدير؛ فالتحديث الذاتي يرفض تعديل ملف لا يملكه. والتحديث يحل من المشكلات أكثر مما يحله أي خيار منفرد.