diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-01-23 00:12:47 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-01-23 00:12:47 +0100 |
commit | 066f6a06305c715c94054ea00734e9259d5a2257 (patch) | |
tree | 93c4a25b94aaf471d686d35ff96b828048085bf5 /youtube_dl/extractor/brightcove.py | |
parent | 12ed57418c9c46b483ccd326a13724d91c2b911d (diff) |
[nowness] Add support
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r-- | youtube_dl/extractor/brightcove.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py index e1c45d1f0..443294e6f 100644 --- a/youtube_dl/extractor/brightcove.py +++ b/youtube_dl/extractor/brightcove.py @@ -198,7 +198,7 @@ class BrightcoveIE(InfoExtractor): def _extract_video_info(self, video_info): info = { 'id': compat_str(video_info['id']), - 'title': video_info['displayName'], + 'title': video_info['displayName'].strip(), 'description': video_info.get('shortDescription'), 'thumbnail': video_info.get('videoStillURL') or video_info.get('thumbnailURL'), 'uploader': video_info.get('publisherName'), |