forked from minhngoc25a/youtube-dl
[periscope] fix playlist extraction (#9967)
The JSON response changed and the extractor needed to be updated in order to gather the video IDs.
This commit is contained in:
parent
564dc3c6e8
commit
347227237b
|
@ -122,7 +122,7 @@ class PeriscopeUserIE(InfoExtractor):
|
||||||
|
|
||||||
entries = [
|
entries = [
|
||||||
self.url_result(
|
self.url_result(
|
||||||
'https://www.periscope.tv/%s/%s' % (user_id, broadcast['id']))
|
'https://www.periscope.tv/%s/%s' % (user_id, broadcast))
|
||||||
for broadcast in data_store.get('UserBroadcastHistory', {}).get('broadcasts', [])]
|
for broadcast in data_store.get('UserBroadcastHistory', {}).get('broadcastIds', [])]
|
||||||
|
|
||||||
return self.playlist_result(entries, user_id, title, description)
|
return self.playlist_result(entries, user_id, title, description)
|
||||||
|
|
Loading…
Reference in New Issue