mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
[keek] Strip title
This commit is contained in:
parent
1ab1c4ef57
commit
86692c019c
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ class KeekIE(InfoExtractor):
|
|||
'id': video_id,
|
||||
'url': self._og_search_video_url(webpage),
|
||||
'ext': 'mp4',
|
||||
'title': self._og_search_description(webpage),
|
||||
'title': self._og_search_description(webpage).strip(),
|
||||
'thumbnail': self._og_search_thumbnail(webpage),
|
||||
'uploader': self._search_regex(
|
||||
r'data-username=(["\'])(?P<uploader>.+?)\1', webpage,
|
||||
|
|
Loading…
Reference in a new issue