diff options
author | Remita Amine <remitamine@gmail.com> | 2016-09-24 15:39:06 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-09-24 15:39:48 +0100 |
commit | 27e99078d337cdc77a5a7228998d3b2fe722e7cb (patch) | |
tree | 7efd6c8cefa41d3dbbb77feabe62fdef265b3e95 | |
parent | 6f126d903f46d976a380a5b4265084e5a21a3c09 (diff) |
[brightcove:new] add support for live streams
-rw-r--r-- | youtube_dl/extractor/brightcove.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py index aeb22be16..2ec55b185 100644 --- a/youtube_dl/extractor/brightcove.py +++ b/youtube_dl/extractor/brightcove.py @@ -621,15 +621,21 @@ class BrightcoveNewIE(InfoExtractor): 'url': text_track['src'], }) + is_live = False + duration = float_or_none(json_data.get('duration'), 1000) + if duration and duration < 0: + is_live = True + return { 'id': video_id, - 'title': title, + 'title': self._live_title(title) if is_live else title, 'description': clean_html(json_data.get('description')), 'thumbnail': json_data.get('thumbnail') or json_data.get('poster'), - 'duration': float_or_none(json_data.get('duration'), 1000), + 'duration': duration, 'timestamp': parse_iso8601(json_data.get('published_at')), 'uploader_id': account_id, 'formats': formats, 'subtitles': subtitles, 'tags': json_data.get('tags', []), + 'is_live': is_live, } |