我用它来下载带有章节信息的单个文件。▶️
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=
我试着做
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_
但它给出了错误
错误:固定输出名称,但下载多个文件:-是的-播放列表‘列表’不能识别为内部或外部命令,可操作的程序或批处理文件。
使用ytdl / ytdlp下载包含章节信息的整个Youtube播放列表的命令行是什么?❓
请帮帮忙
发布于 2022-07-27 14:51:29
参数--yes-playlist的位置错误。
把它放在-o之前
yt-dlp -f "bestvideo[height<=720]+bestaudio/best[height<=720]" --yes-playlist -o "%USERPROFILE%\Desktop\%(title)s-%(id)s.%(ext)s" --embed-chapters https://www.youtube.com/watch?v=ywyQ_eNNCJU&list=PLI84Sf0aDgazRojpYTLTXFE6Iaf5bkYr_
https://stackoverflow.com/questions/73104152
复制相似问题