Skip to content

Commit

Permalink
[ie/twitter:broadcast] Support --wait-for-video (#8475)
Browse files Browse the repository at this point in the history
Closes #8473
Authored by: bashonly
  • Loading branch information
bashonly committed Nov 11, 2023
1 parent 2863fcf commit f6e9709
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 6 additions & 3 deletions yt_dlp/extractor/periscope.py
Expand Up @@ -4,6 +4,7 @@
parse_iso8601,
unescapeHTML,
)
from ..utils.traversal import traverse_obj


class PeriscopeBaseIE(InfoExtractor):
Expand All @@ -20,8 +21,6 @@ def _parse_broadcast_data(self, broadcast, video_id):
title = broadcast.get('status') or 'Periscope Broadcast'
uploader = broadcast.get('user_display_name') or broadcast.get('username')
title = '%s - %s' % (uploader, title) if uploader else title
is_live = broadcast.get('state').lower() == 'running'

thumbnails = [{
'url': broadcast[image],
} for image in ('image_url', 'image_url_medium', 'image_url_small') if broadcast.get(image)]
Expand All @@ -31,12 +30,16 @@ def _parse_broadcast_data(self, broadcast, video_id):
'title': title,
'timestamp': parse_iso8601(broadcast.get('created_at')) or int_or_none(
broadcast.get('created_at_ms'), scale=1000),
'release_timestamp': int_or_none(broadcast.get('scheduled_start_ms'), scale=1000),
'uploader': uploader,
'uploader_id': broadcast.get('user_id') or broadcast.get('username'),
'thumbnails': thumbnails,
'view_count': int_or_none(broadcast.get('total_watched')),
'tags': broadcast.get('tags'),
'is_live': is_live,
'live_status': {
'running': 'is_live',
'not_started': 'is_upcoming',
}.get(traverse_obj(broadcast, ('state', {str.lower}))) or 'was_live'
}

@staticmethod
Expand Down
3 changes: 3 additions & 0 deletions yt_dlp/extractor/twitter.py
Expand Up @@ -1619,6 +1619,9 @@ def _real_extract(self, url):
info['title'] = broadcast.get('status') or info.get('title')
info['uploader_id'] = broadcast.get('twitter_username') or info.get('uploader_id')
info['uploader_url'] = format_field(broadcast, 'twitter_username', 'https://twitter.com/%s', default=None)
if info['live_status'] == 'is_upcoming':
return info

media_key = broadcast['media_key']
source = self._call_api(
f'live_video_stream/status/{media_key}', media_key)['source']
Expand Down

0 comments on commit f6e9709

Please sign in to comment.