Browse Source

[periscope] fix playlist extraction (#9967)

The JSON response changed and the extractor needed to be updated in order to gather the video IDs.
totalwebcasting
cant-think-of-a-name 8 years ago
committed by Sergey M․
parent
commit
347227237b
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/periscope.py

+ 2
- 2
youtube_dl/extractor/periscope.py View File

@ -122,7 +122,7 @@ class PeriscopeUserIE(InfoExtractor):
entries = [
self.url_result(
'https://www.periscope.tv/%s/%s' % (user_id, broadcast['id']))
for broadcast in data_store.get('UserBroadcastHistory', {}).get('broadcasts', [])]
'https://www.periscope.tv/%s/%s' % (user_id, broadcast))
for broadcast in data_store.get('UserBroadcastHistory', {}).get('broadcastIds', [])]
return self.playlist_result(entries, user_id, title, description)

Loading…
Cancel
Save