pytube 播放列表返回空数组

pytube playlist is returning empty array

最近 pytube 开始 return 创建一个空播放列表。是什么导致此播放列表为空?

from pytube import Playlist

link = 'https://www.youtube.com/watch? 
v=2HtaIvb61Uk&list=PLu8BgVaWowIG_0omesGRkKXK2mqWqAKXU'

print(Playlist(link))

result: []

这个播放列表应该return几个链接。不知道是更新问题还是代码错误,如果有人知道如何解决,我将不胜感激:)

pytube 中似乎还有另一个问题,这可能与 YouTube 更改其代码有关。下面的代码将输出播放列表中的项目数。

import re
from pytube import Playlist

playlist = Playlist('https://www.youtube.com/watch?v=2HtaIvb61Uk&list=PLu8BgVaWowIG_0omesGRkKXK2mqWqAKXU')
playlist._video_regex = re.compile(r"\"url\":\"(/watch\?v=[\w-]*)")
 
print(len(playlist.video_urls))
#output 14