diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-13 15:53:16 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-13 15:53:16 +0100 |
commit | 11b28e93d3a5496916e55a717c362fe7a6a1c7e7 (patch) | |
tree | ab46802daa7451b46af2b18b1f70e08b09b5ff91 /youtube_dl | |
parent | c3d582985f049f611ddd35e6bfde4026cc98da57 (diff) | |
parent | 3898c8a7b2835b1632ef0e34481bdf5e006cee2b (diff) |
Merge remote-tracking branch 'yaccz/add-extractor/freevideo'
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/__init__.py | 1 | ||||
-rw-r--r-- | youtube_dl/extractor/freevideo.py | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index c15b1add8..f45ce05ab 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -127,6 +127,7 @@ from .francetv import ( ) from .freesound import FreesoundIE from .freespeech import FreespeechIE +from .freevideo import FreeVideoIE from .funnyordie import FunnyOrDieIE from .gamekings import GamekingsIE from .gameone import ( diff --git a/youtube_dl/extractor/freevideo.py b/youtube_dl/extractor/freevideo.py new file mode 100644 index 000000000..f9716c4c8 --- /dev/null +++ b/youtube_dl/extractor/freevideo.py @@ -0,0 +1,49 @@ +from __future__ import unicode_literals + +import re + +from .common import InfoExtractor +from ..utils import ( + ExtractorError, +) + + +class FreeVideoIE(InfoExtractor): + _VALID_URL = r'^http://www.freevideo.cz/vase-videa/(?P<videoid>[^.]+)\.html$' + + _TEST = { + 'url': 'http://www.freevideo.cz/vase-videa/vysukany-zadecek-22033.html', + 'file': 'vysukany-zadecek-22033.mp4', + 'info_dict': { + "title": "vysukany-zadecek-22033", + "age_limit": 18, + } + } + + def _real_extract(self, url): + mobj = re.match(self._VALID_URL, url) + if mobj is None: + raise ExtractorError('Invalid search query "%s"' % query) + + video_id = mobj.group('videoid') + + # Get webpage content + webpage = self._download_webpage(url, video_id) + + age_limit = self._rta_search(webpage) + if age_limit == 0: + # interpret 0 as mis-detection since this site is adult-content only. + # However, if we get non-0, assume the rtalabel started giving proper + # results + age_limit = 18 + + url = re.search(r'\s+url: "(http://[a-z0-9-]+.cdn.freevideo.cz/stream/.*/video.mp4)"', webpage) + if url is None: + raise ExtractorError('ERROR: unable to extract video url') + + return { + 'id': video_id, + 'url': url.groups()[0], + 'title': video_id, + 'age_limit': age_limit, + } |