aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/bigflix.py
blob: aeea1a002e02b1fd61e3d92bcf09e7e65a92f2b1 (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
# coding: utf-8
from __future__ import unicode_literals

from base64 import b64decode

from .common import InfoExtractor
from ..compat import compat_urllib_parse_unquote


class BigflixIE(InfoExtractor):
    _VALID_URL = r'https?://(?:www\.)?bigflix\.com/.*/(?P<id>[0-9]+)'
    _TEST = {
        'url': 'http://www.bigflix.com/Hindi-movies/Action-movies/Singham-Returns/16537',
        'md5': 'ec76aa9b1129e2e5b301a474e54fab74',
        'info_dict': {
            'id': '16537',
            'ext': 'mp4',
            'title': 'Singham Returns',
            'description': 'md5:3d2ba5815f14911d5cc6a501ae0cf65d',
        }
    }

    def _real_extract(self, url):
        video_id = self._match_id(url)

        webpage = self._download_webpage(url, video_id)

        title = self._html_search_regex(
            r'<div[^>]+class=["\']pagetitle["\'][^>]*>(.+?)</div>',
            webpage, 'title')

        video_url = b64decode(compat_urllib_parse_unquote(self._search_regex(
            r'file=([^&]+)', webpage, 'video url')).encode('ascii')).decode('utf-8')

        description = self._html_search_meta('description', webpage)

        return {
            'id': video_id,
            'title': title,
            'url': video_url,
            'description': description,
        }