mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[periscope] Add another fallback source
This commit is contained in:
parent
347227237b
commit
35fc3021ba
@ -120,9 +120,12 @@ def _real_extract(self, url):
|
|||||||
title = user.get('display_name') or user.get('username')
|
title = user.get('display_name') or user.get('username')
|
||||||
description = user.get('description')
|
description = user.get('description')
|
||||||
|
|
||||||
|
broadcast_ids = (data_store.get('UserBroadcastHistory', {}).get('broadcastIds') or
|
||||||
|
data_store.get('BroadcastCache', {}).get('broadcastIds', []))
|
||||||
|
|
||||||
entries = [
|
entries = [
|
||||||
self.url_result(
|
self.url_result(
|
||||||
'https://www.periscope.tv/%s/%s' % (user_id, broadcast))
|
'https://www.periscope.tv/%s/%s' % (user_id, broadcast_id))
|
||||||
for broadcast in data_store.get('UserBroadcastHistory', {}).get('broadcastIds', [])]
|
for broadcast_id in broadcast_ids]
|
||||||
|
|
||||||
return self.playlist_result(entries, user_id, title, description)
|
return self.playlist_result(entries, user_id, title, description)
|
||||||
|
Loading…
Reference in New Issue
Block a user