使用 youtube-dl 从播放列表列表中获取视频信息

Lar*_* M. 5 youtube python-3.x youtube-dl

我正在尝试使用 youtube-dl 从 youtube 中的播放列表列表中获取一些信息。我已经编写了这段代码,但它需要的不是视频信息而是播放列表信息(例如播放列表标题而不是播放列表中的视频标题)。我不明白为什么。

input_file = open("url")
for video in input_file:
    print(video)
ydl_opts = {
    'ignoreerrors': True
}
    with youtube_dl.YoutubeDL(ydl_opts) as ydl: 
                info_dict = ydl.extract_info(video, download=False)
                for i in info_dict:
                    video_thumbnail = info_dict.get("thumbnail"),
                    video_id = info_dict.get("id"),
                    video_title = info_dict.get("title"),
                    video_description = info_dict.get("description"),
                    video_duration = info_dict.get("duration")
Run Code Online (Sandbox Code Playgroud)

任何帮助将不胜感激。

xjc*_*jcl 9

您调用的变量video实际上包含播放列表信息,而不是视频信息。您可以在播放列表的entries属性中找到单个视频信息的列表。

请参阅下文以了解可能的修复方法。我将您的video变量重命名为,playlist并可以自由地重写它并添加输出:

ydl_opts = {
    'ignoreerrors': True,
    'quiet': True
}

input_file = open("url")

for playlist in input_file:

    with youtube_dl.YoutubeDL(ydl_opts) as ydl:

        playlist_dict = ydl.extract_info(playlist, download=False)

        for video in playlist_dict['entries']:

            print()

            if not video:
                print('ERROR: Unable to get info. Continuing...')
                continue

            for prop in ['thumbnail', 'id', 'title', 'description', 'duration']:
                print(prop, '--', video.get(prop))
Run Code Online (Sandbox Code Playgroud)


Ale*_*ese 5

运行命令

youtube-dl --print-json https://www.youtube.com/playlist?list=<playlist_id> > example.json
Run Code Online (Sandbox Code Playgroud)

例如,您还可以使用--get检索特定项目

youtube-dl --get-title https://www.youtube.com/playlist?list=<playlist_id> > example.txt
Run Code Online (Sandbox Code Playgroud)