1
import pafy
plurl = input("Enter The Link : ")
playlist = pafy.get_playlist(plurl)
l = len(playlist['author'])

#file = open("VideoInformation.txt","w+")

def extract_name_from_title(s):
c=0
name=""
start = s.find("-")
start = start+2
start = int(start)
end = s.find("|")
end = end-1
end = int(end)
name = s[start:end]

return name

for i in range(0,l-1) :
  id = playlist['items'][i]['pafy'].videoid
  v=pafy.new(id)
  #video = pafy.new('https://www.youtube.com/watch?v='+id)
  print("Video Number : {}".format(i))
  name = extract_name_from_title(v.title)
  link = "https://www.youtube.com/watch?v={}".format(id)
  print("Video title :{}".format(name))
  print("Video Link : {}".format(link))

这是我正在使用的代码和错误窗口 **Spyder**

获得正确的输出后,它向我显示了一个错误,因为列表索引超出范围 有人可以帮助我如何避免该错误吗?

"我使用的 Youtube 链接是:

4

1 回答 1

2

只是在这里猜测,但您可能应该更改l = len(playlist['author'])l = len(playlist['items']),因为您想循环播放列表项。

于 2019-10-26T16:00:02.983 回答