youtube-dl/youtube_dl/extractor/keek.py

31 lines
943 B
Python
Raw Normal View History

from __future__ import unicode_literals
2013-06-23 20:16:41 +00:00
from .common import InfoExtractor
class KeekIE(InfoExtractor):
2015-09-24 21:38:00 +00:00
_VALID_URL = r'https?://(?:www\.)?keek\.com/keek/(?P<id>\w+)'
IE_NAME = 'keek'
2013-06-27 18:46:46 +00:00
_TEST = {
2015-09-24 21:38:00 +00:00
'url': 'https://www.keek.com/keek/NODfbab',
'md5': '9b0636f8c0f7614afa4ea5e4c6e57e83',
'info_dict': {
2014-12-13 11:35:13 +00:00
'id': 'NODfbab',
'ext': 'mp4',
2015-09-24 21:38:00 +00:00
'title': 'test chars: "\'/\\ä<>This is a test video for youtube-dl.For more information, contact phihag@phihag.de . - Video - Videos on Keek',
},
2013-06-27 18:46:46 +00:00
}
2013-06-23 20:16:41 +00:00
def _real_extract(self, url):
2014-12-13 11:35:13 +00:00
video_id = self._match_id(url)
2013-06-23 20:16:41 +00:00
webpage = self._download_webpage(url, video_id)
return {
'id': video_id,
2015-09-24 21:38:00 +00:00
'url': self._og_search_video_url(webpage),
'ext': 'mp4',
'title': self._og_search_title(webpage),
2015-09-24 21:38:00 +00:00
'thumbnail': self._og_search_thumbnail(webpage),
2013-06-23 20:16:41 +00:00
}