Ir al contenido
yt-dlp

Instalar yt-dlp en macOS

Instala yt-dlp y ffmpeg en macOS con Homebrew o pipx, y mantenlos actualizados.

Este artículo todavía no está traducido, así que se muestra en inglés. La interfaz sí está en tu idioma.

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

Preguntas frecuentes

macOS no encuentra yt-dlp tras instalarlo con pipx.
Ejecuta pipx ensurepath y abre una terminal nueva para que tome el PATH actualizado.
¿Hace falta algo más para las cookies en macOS?
Solo para Safari: --cookies-from-browser safari necesita acceso total al disco para tu terminal, en Ajustes del sistema → Privacidad y seguridad. Chrome y Firefox funcionan sin eso.
¿Cómo actualizo yt-dlp?
Un binario independiente se actualiza con yt-dlp -U. Si lo instalaste con un gestor de paquetes, actualízalo con ese gestor: la autoactualización se niega a modificar un archivo que no le pertenece. Actualizar arregla más problemas que cualquier flag.