1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-11-26 04:02:11 +00:00

Download now works, but video info is missing

This commit is contained in:
Robert Jacobson 2020-03-21 19:52:33 -04:00
parent b22afc8e94
commit 61a4a0fda8

View file

@ -46,7 +46,11 @@ class DigitalConcertHallIE(InfoExtractor):
for key in playlist_dict:
print("key: ", key, "\n")
print("key url: ", playlist_dict[key][0]['url'], "\n")
entries.append(playlist_dict[key][0]['url'])
entries.append({
'id': video_id,
'title': title + "-" + key,
'url': playlist_dict[key][0]['url'],
})
# for i in entries:
# print(i)