logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 7016e24ebea09c717f413273cda16721c4098325
parent bef4688c72f9bdb37f261cc2699d6915a5593edc
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon,  1 Jun 2020 20:31:51 +0700

[periscope] Fix untitled broadcasts (#25482)

Diffstat:

Myoutube_dl/extractor/periscope.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/periscope.py b/youtube_dl/extractor/periscope.py @@ -18,7 +18,7 @@ class PeriscopeBaseIE(InfoExtractor): item_id, query=query) def _parse_broadcast_data(self, broadcast, video_id): - title = broadcast['status'] + 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'