aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/pornflip.py
blob: b6077f7cba6a5936098bf3c1b7a0921030e0c802 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# coding: utf-8
from __future__ import unicode_literals

from .common import InfoExtractor
from ..compat import (
    compat_parse_qs,
)
from ..utils import (
    int_or_none,
    try_get,
    RegexNotFoundError,
)


class PornFlipIE(InfoExtractor):
    _VALID_URL = r'https?://(?:www\.)?pornflip\.com/v/(?P<id>[0-9A-Za-z]{11})'
    _TEST = {
        'url': 'https://www.pornflip.com/v/wz7DfNhMmep',
        'md5': '98c46639849145ae1fd77af532a9278c',
        'info_dict': {
            'id': 'wz7DfNhMmep',
            'ext': 'mp4',
            'title': '2 Amateurs swallow make his dream cumshots true',
            'uploader': 'figifoto',
            'thumbnail': r're:^https?://.*\.jpg$',
            'age_limit': 18,
        }
    }

    def _real_extract(self, url):
        video_id = self._match_id(url)
        webpage = self._download_webpage(url, video_id)
        uploader = self._html_search_regex(
            r'<span class="name">\s+<a class="ajax" href=".+>\s+<strong>([^<]+)<', webpage, 'uploader', fatal=False)
        flashvars = compat_parse_qs(self._html_search_regex(
            r'<embed.+?flashvars="([^"]+)"',
            webpage, 'flashvars'))
        title = flashvars['video_vars[title]'][0]
        thumbnail = try_get(flashvars, lambda x: x['video_vars[big_thumb]'][0])
        formats = []
        for k, v in flashvars.items():
            height = self._search_regex(r'video_vars\[video_urls\]\[(\d+).+?\]', k, 'height', default=None)
            if height:
                url = v[0]
                formats.append({
                    'height': int_or_none(height),
                    'url': url
                })

        self._sort_formats(formats)

        return {
            'id': video_id,
            'formats': formats,
            'title': title,
            'uploader': uploader,
            'thumbnail': thumbnail,
            'age_limit': 18,
        }