mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 12:07:12 +01:00
[keek] move into own file
This commit is contained in:
parent
828400422a
commit
2c64df0399
@ -35,6 +35,7 @@
|
|||||||
from .extractor.googlesearch import GoogleSearchIE
|
from .extractor.googlesearch import GoogleSearchIE
|
||||||
from .extractor.infoq import InfoQIE
|
from .extractor.infoq import InfoQIE
|
||||||
from .extractor.justintv import JustinTVIE
|
from .extractor.justintv import JustinTVIE
|
||||||
|
from .extractor.keek import KeekIE
|
||||||
from .extractor.metacafe import MetacafeIE
|
from .extractor.metacafe import MetacafeIE
|
||||||
from .extractor.mixcloud import MixcloudIE
|
from .extractor.mixcloud import MixcloudIE
|
||||||
from .extractor.mtv import MTVIE
|
from .extractor.mtv import MTVIE
|
||||||
@ -85,33 +86,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
class KeekIE(InfoExtractor):
|
|
||||||
_VALID_URL = r'http://(?:www\.)?keek\.com/(?:!|\w+/keeks/)(?P<videoID>\w+)'
|
|
||||||
IE_NAME = u'keek'
|
|
||||||
|
|
||||||
def _real_extract(self, url):
|
|
||||||
m = re.match(self._VALID_URL, url)
|
|
||||||
video_id = m.group('videoID')
|
|
||||||
|
|
||||||
video_url = u'http://cdn.keek.com/keek/video/%s' % video_id
|
|
||||||
thumbnail = u'http://cdn.keek.com/keek/thumbnail/%s/w100/h75' % video_id
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
|
||||||
|
|
||||||
video_title = self._html_search_regex(r'<meta property="og:title" content="(?P<title>.*?)"',
|
|
||||||
webpage, u'title')
|
|
||||||
|
|
||||||
uploader = self._html_search_regex(r'<div class="user-name-and-bio">[\S\s]+?<h2>(?P<uploader>.+?)</h2>',
|
|
||||||
webpage, u'uploader', fatal=False)
|
|
||||||
|
|
||||||
info = {
|
|
||||||
'id': video_id,
|
|
||||||
'url': video_url,
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': video_title,
|
|
||||||
'thumbnail': thumbnail,
|
|
||||||
'uploader': uploader
|
|
||||||
}
|
|
||||||
return [info]
|
|
||||||
|
|
||||||
|
|
||||||
class MySpassIE(InfoExtractor):
|
class MySpassIE(InfoExtractor):
|
||||||
|
32
youtube_dl/extractor/keek.py
Normal file
32
youtube_dl/extractor/keek.py
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import re
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
|
class KeekIE(InfoExtractor):
|
||||||
|
_VALID_URL = r'http://(?:www\.)?keek\.com/(?:!|\w+/keeks/)(?P<videoID>\w+)'
|
||||||
|
IE_NAME = u'keek'
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
m = re.match(self._VALID_URL, url)
|
||||||
|
video_id = m.group('videoID')
|
||||||
|
|
||||||
|
video_url = u'http://cdn.keek.com/keek/video/%s' % video_id
|
||||||
|
thumbnail = u'http://cdn.keek.com/keek/thumbnail/%s/w100/h75' % video_id
|
||||||
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
|
video_title = self._html_search_regex(r'<meta property="og:title" content="(?P<title>.*?)"',
|
||||||
|
webpage, u'title')
|
||||||
|
|
||||||
|
uploader = self._html_search_regex(r'<div class="user-name-and-bio">[\S\s]+?<h2>(?P<uploader>.+?)</h2>',
|
||||||
|
webpage, u'uploader', fatal=False)
|
||||||
|
|
||||||
|
info = {
|
||||||
|
'id': video_id,
|
||||||
|
'url': video_url,
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': video_title,
|
||||||
|
'thumbnail': thumbnail,
|
||||||
|
'uploader': uploader
|
||||||
|
}
|
||||||
|
return [info]
|
Loading…
Reference in New Issue
Block a user