mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
30 lines
943 B
Python
30 lines
943 B
Python
from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
class KeekIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:www\.)?keek\.com/keek/(?P<id>\w+)'
|
|
IE_NAME = 'keek'
|
|
_TEST = {
|
|
'url': 'https://www.keek.com/keek/NODfbab',
|
|
'md5': '9b0636f8c0f7614afa4ea5e4c6e57e83',
|
|
'info_dict': {
|
|
'id': 'NODfbab',
|
|
'ext': 'mp4',
|
|
'title': 'test chars: "\'/\\ä<>This is a test video for youtube-dl.For more information, contact phihag@phihag.de . - Video - Videos on Keek',
|
|
},
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
return {
|
|
'id': video_id,
|
|
'url': self._og_search_video_url(webpage),
|
|
'ext': 'mp4',
|
|
'title': self._og_search_title(webpage),
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
|
}
|