diff options
author | pyed <iAbdulelah@Gmail.com> | 2014-08-08 09:48:02 +0300 |
---|---|---|
committer | pyed <iAbdulelah@Gmail.com> | 2014-08-08 09:48:02 +0300 |
commit | 64d02399d8d2acbb55b22f789a5b54e79591b7b3 (patch) | |
tree | dfab9f474c49c9c9e2cdeec69395ef1a6c01fc95 /youtube_dl/extractor | |
parent | 5961017202174bf14eda0c0b603e4da44983c884 (diff) |
[xboxclips] Add new extractor
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/__init__.py | 1 | ||||
-rw-r--r-- | youtube_dl/extractor/xboxclips.py | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index 468c7dc29..23f53ba13 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -384,6 +384,7 @@ from .wistia import WistiaIE from .worldstarhiphop import WorldStarHipHopIE from .wrzuta import WrzutaIE from .xbef import XBefIE +from .xboxclips import XboxClipsIE from .xhamster import XHamsterIE from .xnxx import XNXXIE from .xvideos import XVideosIE diff --git a/youtube_dl/extractor/xboxclips.py b/youtube_dl/extractor/xboxclips.py new file mode 100644 index 000000000..499702d0d --- /dev/null +++ b/youtube_dl/extractor/xboxclips.py @@ -0,0 +1,34 @@ +# encoding: utf-8 +import re + +from .common import InfoExtractor + +class XboxClipsIE(InfoExtractor): + _VALID_URL = r'^https?://(www\.)?xboxclips\.com/video.php\?.*vid=(?P<id>[\w-]*)' + _TEST = { + 'url': 'https://xboxclips.com/video.php?uid=2533274823424419&gamertag=Iabdulelah&vid=074a69a9-5faf-46aa-b93b-9909c1720325', + 'md5': 'fbe1ec805e920aeb8eced3c3e657df5d', + 'info_dict': { + 'id': '074a69a9-5faf-46aa-b93b-9909c1720325', + 'ext': 'mp4', + 'title': 'Iabdulelah playing Upload Studio', + } + } + + def _real_extract(self, url): + mobj = re.match(self._VALID_URL, url) + video_id = mobj.group('id') + + webpage = self._download_webpage(url, video_id) + video_url = self._search_regex(r'Link.*?"(.*?)"', + webpage, 'video URL') + + video_title = self._html_search_regex(r'<title>.*?\|(.*?)<', + webpage, 'title') + + return { + 'id': video_id, + 'url': video_url, + 'title': video_title, + 'ext': 'mp4', + } |