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:
parent
b22afc8e94
commit
61a4a0fda8
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue