Windows PowerShell / CMD · Copiar y pegar · Actualizado 2026
Todos los comandos comunes de yt-dlp en un solo lugar. Pega directamente en PowerShell o CMD. Sustituye la URL por el enlace de tu vídeo o playlist.
Básicos
yt-dlp "URL"
yt-dlp -f "bestvideo+bestaudio/best" "URL"
yt-dlp --version
yt-dlp -U
yt-dlp -F "URL"
yt-dlp --simulate "URL"
Calidad & selección de formato
yt-dlp -f "bestvideo[height<=1080]+bestaudio/best" "URL"
yt-dlp -f "bestvideo[height>=2160]+bestaudio/best" "URL"
yt-dlp -f "bestvideo[ext=mp4][vcodec*=h264]+bestaudio[ext=m4a]/best[ext=mp4]" "URL"
yt-dlp -f "bestvideo[vcodec^=av01]/bestvideo[vcodec^=vp9]/bestvideo+bestaudio/best" "URL"
Audio & MP3
yt-dlp -x --audio-format mp3 --audio-quality 0 --embed-thumbnail --embed-metadata "URL"
yt-dlp -f ba -x --audio-format best "URL"
yt-dlp -x --audio-format mp3 --audio-quality 0 --embed-thumbnail --embed-metadata --yes-playlist -o "%(playlist_index)02d-%(title)s.%(ext)s" "PLAYLIST_URL"
yt-dlp -a links.txt -x --audio-format mp3 --audio-quality 0
Playlists & canales
yt-dlp --yes-playlist -o "%(playlist_index)02d-%(title)s.%(ext)s" "PLAYLIST_URL"
yt-dlp --playlist-items 1,5,10-12 "PLAYLIST_URL"
yt-dlp --continue --download-archive downloaded.txt "PLAYLIST_URL"
yt-dlp "https://www.youtube.com/@NombreDelCanal/videos" -o "%(upload_date>%Y-%m-%d)s-%(title)s.%(ext)s"
Subtítulos
yt-dlp --write-sub --write-auto-sub --sub-langs es --sub-format srt "URL"
yt-dlp -f "bv+ba/best" --write-auto-sub --sub-langs "es,*" --embed-subs --merge-output-format mkv "URL"
yt-dlp --write-sub --write-auto-sub --sub-langs es --skip-download "URL"
Plantillas de salida
-o "C:/Vídeos/%(title)s.%(ext)s"
-o "C:/Vídeos/%(playlist)s/%(playlist_index)02d-%(title)s.%(ext)s"
-o "C:/Música/%(artist,channel)s/%(title)s.%(ext)s"
-o "C:/Vídeos/%(channel)s/%(upload_date>%Y-%m-%d)s-%(title)s.%(ext)s"
Variables de plantilla comunes:
%(title)s%(ext)s%(id)s%(upload_date)s%(channel)s%(playlist_index)02dAvanzado
-N 4
--limit-rate 5M
--retries 10 --fragment-retries 10
--cookies-from-browser chrome
--embed-thumbnail --embed-metadata
--dateafter today-30days