[periscope] fix playlist extraction (#9967)

The JSON response changed and the extractor needed to be updated in order to gather the video IDs.
pull/8/head
cant-think-of-a-name 2016-06-30 20:19:17 -05:00 zatwierdzone przez Sergey M․
rodzic 564dc3c6e8
commit 347227237b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 2C393E0F18A9236D
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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)