Cheatsheet for yt-dlp
## Download videos using yt-dlp
> https://github.com/yt-dlp/yt-dlp/wiki/FAQ#how-do-i-pass-cookies-to-yt-dlp
### Download with max quality and mp4 format:
yt-dlp -S "res:1080,ext:mp4" [url_video]
### Download using cookies to get the user and password
yt-dlp -S "res:1080,ext:mp4" [urlvideo] --cookies-from-browser chrome
### Download using specific audio track:
yt-dlp -S "language:spanish" [video url]
### Download a video as mp3:
yt-dlp -x --audio-format mp3 "URL_DEL_VIDEO"