列出 YouTube 频道上所有播放列表中的所有视频(无需下载视频或音频) [英] List all videos from all the playlists on a YouTube channel (without downloading video or audio)

查看:40
本文介绍了列出 YouTube 频道上所有播放列表中的所有视频(无需下载视频或音频)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获取给定 YouTube 频道上所有播放列表中所有视频的列表?

How can I get a list of all the videos inside all the playlists on a given YouTube channel?

因为只下载标题和其余的元数据,而不是实际的媒体文件.

As in download only the titles and rest of the metadata, not the actual media files.

推荐答案

youtube-dl --ignore-errors --write-info-json --skip-download -o "./%(playlist)s/%(title)s.%(ext)s" https://www.youtube.com/channel/UCvrLvII5oxSWEMEkszrxXEA/playlists

说明

  • --ignore-errors 继续下载错误,例如跳过播放列表中不可用的视频,这将停止执行整个命令
  • --write-info-json 将视频元数据写入 .info.json 文件
  • --skip-download 不下载视频
  • -o "./%(playlist)s/%(title)s.%(ext)s" 输出到 第一个播放列表标题/关于事物的第一视频.info.json
  • --ignore-errors Continue on download errors, for example to skip unavailable videos in a playlist, which would stop execution of the whole command
  • --write-info-json Write video metadata to a .info.json file
  • --skip-download Do not download the video
  • -o "./%(playlist)s/%(title)s.%(ext)s" Output to First playlist title/Video number one about things.info.json

这篇关于列出 YouTube 频道上所有播放列表中的所有视频(无需下载视频或音频)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆