Lumaktaw sa nilalaman
yt-dlp

I-install ang yt-dlp sa Windows

I-install ang yt-dlp at ffmpeg sa Windows gamit ang winget, Scoop o simpleng download, at ayusin ang mga error sa PATH na sumusunod dito.

Hindi pa naisasalin ang artikulong ito, kaya ipinapakita ito sa Ingles. Nananatili sa iyong wika ang interface.

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.

Mga madalas itanong

Sinasabi ng Windows na yt-dlp is not recognized. Bakit?
Wala ang executable sa iyong PATH, o bukas na ang terminal bago pa ito na-install. Magbukas muna ng bagong terminal; kung hindi pa rin gumana, mag-install sa pamamagitan ng winget o Scoop na siyang bahala sa PATH.
Hindi mahanap ng yt-dlp ang ffmpeg sa Windows.
I-install ito gamit ang winget install Gyan.FFmpeg, magbukas ng bagong terminal at suriin gamit ang ffmpeg -version. Gumagana rin ang paglalagay ng ffmpeg.exe sa parehong folder ng yt-dlp.exe.
Paano ko ia-update ang yt-dlp?
Ina-update ng nakatayong binary ang sarili nito gamit ang yt-dlp -U. Kung naka-install sa pamamagitan ng package manager, doon mo rin ito i-update; tumatanggi ang self-update na baguhin ang file na hindi nito pag-aari. Mas maraming problema ang nalulutas ng pag-update kaysa sa kahit anong iisang flag.