aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/radiojavan.py
blob: de90f92706b7eb2c443f6ba2272a630a445bf497 (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
60
61
62
63
64
65
66
67
68
69
70
71
# coding: utf-8
from __future__ import unicode_literals

from .common import InfoExtractor
from ..utils import(
    parse_duration,
    str_to_int
)

class RadioJavanIE(InfoExtractor):
    _VALID_URL = r'https?://(?:www\.)?radiojavan\.com/videos/video/(?P<id>[^/]+)/?'
    _TEST = {
        'url': 'http://www.radiojavan.com/videos/video/chaartaar-ashoobam',
        'md5': 'e85208ffa3ca8b83534fca9fe19af95b',
        'info_dict': {
            'id': 'chaartaar-ashoobam',
            'ext': 'mp4',
            'title': 'Chaartaar - Ashoobam',
            'description': 'Chaartaar - Ashoobam',
            'thumbnail': 're:^https?://.*\.jpe?g$',
        }
    }

    def _real_extract(self, url):
        display_id = self._match_id(url)
        webpage = self._download_webpage(url, display_id)
        urls = list()
        prefix = 'https://media.rdjavan.com/media/music_video/'

        video_url_480 = self._search_regex(
            r'RJ\.video480p = \'([^\']+)\'', webpage, '480 video url', fatal= False)
        video_url_720 = self._search_regex(
            r'RJ\.video720p = \'([^\']+)\'', webpage, '720 video url', fatal= False)
        video_url_1080 = self._search_regex(
            r'RJ\.video1080p = \'([^\']+)\'', webpage, '1080 video url', fatal= False)

        if video_url_480:
            urls.append({'url': prefix + video_url_480, 'format': '480p'})
        if video_url_720:
            urls.append({'url': prefix + video_url_720, 'format': '720p'})
        if video_url_1080:
            urls.append({'url': prefix + video_url_1080, 'format': '1080p'})

        title = self._og_search_title(webpage)
        thumbnail = self._og_search_thumbnail(webpage)
        formats = [{
            'url': url['url'],
            'format': url['format']
        } for url in urls]

        likes = self._search_regex(
            r'<span class="rating">([\d,]+)\s*likes</span>', webpage, 'Likes Count', fatal=False )
        likes = likes.replace(',', '')
        dislikes = self._search_regex(
            r'<span class="rating">([\d,]+)\s*dislikes</span>', webpage, 'Dislikes Count', fatal=False )
        dislikes = dislikes.replace(',', '')

        plays = self._search_regex(
            r'views_publish[">\s]*<span[^>]+class="views">Plays: ([\d,]+)</span>', webpage, 'Play Count', fatal=False )
        plays = plays.replace(',', '')

        return {
            'formats': formats,
            'id': display_id,
            'title': title,
            'description': title, # no description provided in RadioJavan
            'thumbnail': thumbnail,
            'like_count': str_to_int(likes),
            'dislike_count': str_to_int(dislikes),
            'viewCount': str_to_int(plays)
        }