I use this to download individual files with chapter information. ▶️
yt-dlp -f "bestvideo[height<=720]+bestaudio/best[height<=720]" -o "%USERPROFILE%\Desktop\%(title)s-%(id)s.%(ext)s" --embed-chapters https://www.youtube.com/watch?v=
I tried doing
yt-dlp -f "bestvideo[height<=720]+bestaudio/best[height<=720]" -o --yes-playlist "%USERPROFILE%\Desktop\%(title)s-%(id)s.%(ext)s" --embed-chapters https://www.youtube.com/watch?v=ywyQ_eNNCJU&list=PLI84Sf0aDgazRojpYTLTXFE6Iaf5bkYr_
But it gives out error
ERROR: Fixed output name but more than one file to download: --yes-playlist 'list' is not recognized as an internal or external command, operable program or batch file.
What is the command line to download the entire Youtube playlist with chapter information embedded in each video using ytdl / ytdlp ?