]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/radiojavan.py
Fix "invalid escape sequences" error on Python 3.6
[yt-dlp.git] / youtube_dl / extractor / radiojavan.py
CommitLineData
185a7e25
MTP
1from __future__ import unicode_literals
2
7cf97daf
S
3import re
4
185a7e25 5from .common import InfoExtractor
6c83e583 6from ..utils import (
7cf97daf
S
7 unified_strdate,
8 str_to_int,
185a7e25
MTP
9)
10
7cf97daf 11
185a7e25
MTP
12class RadioJavanIE(InfoExtractor):
13 _VALID_URL = r'https?://(?:www\.)?radiojavan\.com/videos/video/(?P<id>[^/]+)/?'
14 _TEST = {
15 'url': 'http://www.radiojavan.com/videos/video/chaartaar-ashoobam',
16 'md5': 'e85208ffa3ca8b83534fca9fe19af95b',
17 'info_dict': {
18 'id': 'chaartaar-ashoobam',
19 'ext': 'mp4',
20 'title': 'Chaartaar - Ashoobam',
ec85ded8 21 'thumbnail': r're:^https?://.*\.jpe?g$',
7cf97daf
S
22 'upload_date': '20150215',
23 'view_count': int,
24 'like_count': int,
25 'dislike_count': int,
185a7e25
MTP
26 }
27 }
28
29 def _real_extract(self, url):
7cf97daf 30 video_id = self._match_id(url)
185a7e25 31
7cf97daf 32 webpage = self._download_webpage(url, video_id)
185a7e25 33
7cf97daf
S
34 formats = [{
35 'url': 'https://media.rdjavan.com/media/music_video/%s' % video_path,
36 'format_id': '%sp' % height,
4e8cc1e9 37 'height': int(height),
7cf97daf 38 } for height, video_path in re.findall(r"RJ\.video(\d+)p\s*=\s*'/?([^']+)'", webpage)]
8fb2e5a4 39 self._sort_formats(formats)
185a7e25
MTP
40
41 title = self._og_search_title(webpage)
42 thumbnail = self._og_search_thumbnail(webpage)
185a7e25 43
7cf97daf
S
44 upload_date = unified_strdate(self._search_regex(
45 r'class="date_added">Date added: ([^<]+)<',
46 webpage, 'upload date', fatal=False))
185a7e25 47
7cf97daf
S
48 view_count = str_to_int(self._search_regex(
49 r'class="views">Plays: ([\d,]+)',
50 webpage, 'view count', fatal=False))
51 like_count = str_to_int(self._search_regex(
52 r'class="rating">([\d,]+) likes',
53 webpage, 'like count', fatal=False))
54 dislike_count = str_to_int(self._search_regex(
55 r'class="rating">([\d,]+) dislikes',
56 webpage, 'dislike count', fatal=False))
185a7e25
MTP
57
58 return {
7cf97daf 59 'id': video_id,
185a7e25 60 'title': title,
185a7e25 61 'thumbnail': thumbnail,
7cf97daf
S
62 'upload_date': upload_date,
63 'view_count': view_count,
64 'like_count': like_count,
65 'dislike_count': dislike_count,
66 'formats': formats,
67 }