]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/awaan.py
[yahoo] extract more and better formats
[yt-dlp.git] / youtube_dl / extractor / awaan.py
CommitLineData
cd6b555e 1# coding: utf-8
2from __future__ import unicode_literals
3
9f4921bf 4import re
8e2898ed 5import base64
9f4921bf 6
3af1fac7 7from .common import InfoExtractor
3fc088f8 8from ..compat import (
15707c7e 9 compat_urllib_parse_urlencode,
3fc088f8 10 compat_str,
11)
f94639fa
S
12from ..utils import (
13 int_or_none,
14 parse_iso8601,
b477da20 15 smuggle_url,
16 unsmuggle_url,
6e6bc8da 17 urlencode_postdata,
f94639fa 18)
cd6b555e 19
3af1fac7 20
7367bdef 21class AWAANIE(InfoExtractor):
8065d6c5 22 _VALID_URL = r'https?://(?:www\.)?(?:awaan|dcndigital)\.ae/(?:#/)?show/(?P<show_id>\d+)/[^/]+(?:/(?P<video_id>\d+)/(?P<season_id>\d+))?'
9f4921bf 23
24 def _real_extract(self, url):
25 show_id, video_id, season_id = re.match(self._VALID_URL, url).groups()
9f4921bf 26 if video_id and int(video_id) > 0:
6afe044b 27 return self.url_result(
7367bdef 28 'http://awaan.ae/media/%s' % video_id, 'AWAANVideo')
6afe044b 29 elif season_id and int(season_id) > 0:
30 return self.url_result(smuggle_url(
7367bdef
RA
31 'http://awaan.ae/program/season/%s' % season_id,
32 {'show_id': show_id}), 'AWAANSeason')
9f4921bf 33 else:
6afe044b 34 return self.url_result(
7367bdef 35 'http://awaan.ae/program/%s' % show_id, 'AWAANSeason')
9f4921bf 36
37
7367bdef
RA
38class AWAANBaseIE(InfoExtractor):
39 def _parse_video_data(self, video_data, video_id, is_live):
6afe044b 40 title = video_data.get('title_en') or video_data['title_ar']
41 img = video_data.get('img')
6afe044b 42
43 return {
44 'id': video_id,
45 'title': self._live_title(title) if is_live else title,
7367bdef
RA
46 'description': video_data.get('description_en') or video_data.get('description_ar'),
47 'thumbnail': 'http://admin.mangomolo.com/analytics/%s' % img if img else None,
48 'duration': int_or_none(video_data.get('duration')),
49 'timestamp': parse_iso8601(video_data.get('create_time'), ' '),
6afe044b 50 'is_live': is_live,
51 }
52
8065d6c5 53 def _extract_video_formats(self, webpage, video_id, m3u8_entry_protocol):
bca9bea1 54 formats = []
8065d6c5
RA
55 format_url_base = 'http' + self._html_search_regex(
56 [
57 r'file\s*:\s*"https?(://[^"]+)/playlist.m3u8',
58 r'<a[^>]+href="rtsp(://[^"]+)"'
59 ], webpage, 'format url')
5a65668e
S
60 formats.extend(self._extract_mpd_formats(
61 format_url_base + '/manifest.mpd',
62 video_id, mpd_id='dash', fatal=False))
8065d6c5
RA
63 formats.extend(self._extract_m3u8_formats(
64 format_url_base + '/playlist.m3u8', video_id, 'mp4',
65 m3u8_entry_protocol, m3u8_id='hls', fatal=False))
66 formats.extend(self._extract_f4m_formats(
67 format_url_base + '/manifest.f4m',
68 video_id, f4m_id='hds', fatal=False))
6afe044b 69 self._sort_formats(formats)
70 return formats
71
72
7367bdef
RA
73class AWAANVideoIE(AWAANBaseIE):
74 IE_NAME = 'awaan:video'
8065d6c5
RA
75 _VALID_URL = r'https?://(?:www\.)?(?:awaan|dcndigital)\.ae/(?:#/)?(?:video(?:/[^/]+)?|media|catchup/[^/]+/[^/]+)/(?P<id>\d+)'
76 _TESTS = [{
9f4921bf 77 'url': 'http://www.dcndigital.ae/#/video/%D8%B1%D8%AD%D9%84%D8%A9-%D8%A7%D9%84%D8%B9%D9%85%D8%B1-%D8%A7%D9%84%D8%AD%D9%84%D9%82%D8%A9-1/17375',
7367bdef 78 'md5': '5f61c33bfc7794315c671a62d43116aa',
3af1fac7 79 'info_dict':
80 {
81 'id': '17375',
f94639fa 82 'ext': 'mp4',
3af1fac7 83 'title': 'رحلة العمر : الحلقة 1',
f94639fa 84 'description': 'md5:0156e935d870acb8ef0a66d24070c6d6',
f94639fa
S
85 'duration': 2041,
86 'timestamp': 1227504126,
87 'upload_date': '20081124',
cd6b555e 88 },
8065d6c5
RA
89 }, {
90 'url': 'http://awaan.ae/video/26723981/%D8%AF%D8%A7%D8%B1-%D8%A7%D9%84%D8%B3%D9%84%D8%A7%D9%85:-%D8%AE%D9%8A%D8%B1-%D8%AF%D9%88%D8%B1-%D8%A7%D9%84%D8%A3%D9%86%D8%B5%D8%A7%D8%B1',
91 'only_matching': True,
92 }]
3af1fac7 93
94 def _real_extract(self, url):
95 video_id = self._match_id(url)
f94639fa 96
7367bdef 97 video_data = self._download_json(
f94639fa 98 'http://admin.mangomolo.com/analytics/index.php/plus/video?id=%s' % video_id,
7367bdef
RA
99 video_id, headers={'Origin': 'http://awaan.ae'})
100 info = self._parse_video_data(video_data, video_id, False)
f94639fa 101
3af1fac7 102 webpage = self._download_webpage(
9dd73ef4 103 'http://admin.mangomolo.com/analytics/index.php/customers/embed/video?' +
15707c7e 104 compat_urllib_parse_urlencode({
6afe044b 105 'id': video_data['id'],
106 'user_id': video_data['user_id'],
107 'signature': video_data['signature'],
f94639fa
S
108 'countries': 'Q0M=',
109 'filter': 'DENY',
110 }), video_id)
6afe044b 111 info['formats'] = self._extract_video_formats(webpage, video_id, 'm3u8_native')
112 return info
f94639fa 113
f94639fa 114
7367bdef
RA
115class AWAANLiveIE(AWAANBaseIE):
116 IE_NAME = 'awaan:live'
8065d6c5 117 _VALID_URL = r'https?://(?:www\.)?(?:awaan|dcndigital)\.ae/(?:#/)?live/(?P<id>\d+)'
7367bdef
RA
118 _TEST = {
119 'url': 'http://awaan.ae/live/6/dubai-tv',
120 'info_dict': {
121 'id': '6',
122 'ext': 'mp4',
123 'title': 're:Dubai Al Oula [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
124 'upload_date': '20150107',
125 'timestamp': 1420588800,
126 },
127 'params': {
128 # m3u8 download
129 'skip_download': True,
130 },
131 }
8e2898ed 132
133 def _real_extract(self, url):
134 channel_id = self._match_id(url)
135
7367bdef 136 channel_data = self._download_json(
8e2898ed 137 'http://admin.mangomolo.com/analytics/index.php/plus/getchanneldetails?channel_id=%s' % channel_id,
7367bdef
RA
138 channel_id, headers={'Origin': 'http://awaan.ae'})
139 info = self._parse_video_data(channel_data, channel_id, True)
8e2898ed 140
141 webpage = self._download_webpage(
48637515 142 'http://admin.mangomolo.com/analytics/index.php/customers/embed/index?' +
15707c7e 143 compat_urllib_parse_urlencode({
6afe044b 144 'id': base64.b64encode(channel_data['user_id'].encode()).decode(),
145 'channelid': base64.b64encode(channel_data['id'].encode()).decode(),
146 'signature': channel_data['signature'],
8e2898ed 147 'countries': 'Q0M=',
148 'filter': 'DENY',
149 }), channel_id)
6afe044b 150 info['formats'] = self._extract_video_formats(webpage, channel_id, 'm3u8')
151 return info
8e2898ed 152
153
7367bdef
RA
154class AWAANSeasonIE(InfoExtractor):
155 IE_NAME = 'awaan:season'
8065d6c5 156 _VALID_URL = r'https?://(?:www\.)?(?:awaan|dcndigital)\.ae/(?:#/)?program/(?:(?P<show_id>\d+)|season/(?P<season_id>\d+))'
9f4921bf 157 _TEST = {
158 'url': 'http://dcndigital.ae/#/program/205024/%D9%85%D8%AD%D8%A7%D8%B6%D8%B1%D8%A7%D8%AA-%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%A7%D9%84%D8%B4%D8%B9%D8%B1%D8%A7%D9%88%D9%8A',
159 'info_dict':
160 {
b477da20 161 'id': '7910',
9f4921bf 162 'title': 'محاضرات الشيخ الشعراوي',
9f4921bf 163 },
164 'playlist_mincount': 27,
165 }
166
167 def _real_extract(self, url):
b477da20 168 url, smuggled_data = unsmuggle_url(url, {})
9f4921bf 169 show_id, season_id = re.match(self._VALID_URL, url).groups()
48637515 170
9f4921bf 171 data = {}
172 if season_id:
9f4921bf 173 data['season'] = season_id
b477da20 174 show_id = smuggled_data.get('show_id')
175 if show_id is None:
7367bdef 176 season = self._download_json(
b477da20 177 'http://admin.mangomolo.com/analytics/index.php/plus/season_info?id=%s' % season_id,
7367bdef 178 season_id, headers={'Origin': 'http://awaan.ae'})
b477da20 179 show_id = season['id']
9f4921bf 180 data['show_id'] = show_id
7367bdef 181 show = self._download_json(
9f4921bf 182 'http://admin.mangomolo.com/analytics/index.php/plus/show',
7367bdef
RA
183 show_id, data=urlencode_postdata(data), headers={
184 'Origin': 'http://awaan.ae',
9f4921bf 185 'Content-Type': 'application/x-www-form-urlencoded'
f94639fa 186 })
50b9dd73 187 if not season_id:
188 season_id = show['default_season']
189 for season in show['seasons']:
190 if season['id'] == season_id:
191 title = season.get('title_en') or season['title_ar']
f94639fa 192
50b9dd73 193 entries = []
194 for video in show['videos']:
3fc088f8 195 video_id = compat_str(video['id'])
6afe044b 196 entries.append(self.url_result(
7367bdef 197 'http://awaan.ae/media/%s' % video_id, 'AWAANVideo', video_id))
f94639fa 198
50b9dd73 199 return self.playlist_result(entries, season_id, title)