2 from __future__ import unicode_literals
4 from .common import InfoExtractor
5 from ..compat import compat_urllib_parse_urlencode
13 class ShahidIE(InfoExtractor):
14 _VALID_URL = r'https?://shahid\.mbc\.net/ar/episode/(?P<id>\d+)/?'
16 'url': 'https://shahid.mbc.net/ar/episode/90574/%D8%A7%D9%84%D9%85%D9%84%D9%83-%D8%B9%D8%A8%D8%AF%D8%A7%D9%84%D9%84%D9%87-%D8%A7%D9%84%D8%A5%D9%86%D8%B3%D8%A7%D9%86-%D8%A7%D9%84%D9%85%D9%88%D8%B3%D9%85-1-%D9%83%D9%84%D9%8A%D8%A8-3.html',
20 'title': 'الملك عبدالله الإنسان الموسم 1 كليب 3',
21 'description': 'الفيلم الوثائقي - الملك عبد الله الإنسان',
23 'timestamp': 1422057420,
24 'upload_date': '20150123',
28 'skip_download': True,
31 # shahid plus subscriber only
32 'url': 'https://shahid.mbc.net/ar/episode/90511/%D9%85%D8%B1%D8%A7%D9%8A%D8%A7-2011-%D8%A7%D9%84%D9%85%D9%88%D8%B3%D9%85-1-%D8%A7%D9%84%D8%AD%D9%84%D9%82%D8%A9-1.html',
36 def _handle_error(self, response):
37 if not isinstance(response, dict):
39 error = response.get('error')
42 '%s returned error: %s' % (self.IE_NAME, '\n'.join(error.values())),
45 def _download_json(self, url, video_id, note='Downloading JSON metadata'):
46 response = super(ShahidIE, self)._download_json(url, video_id, note)['data']
47 self._handle_error(response)
50 def _real_extract(self, url):
51 video_id = self._match_id(url)
53 webpage = self._download_webpage(url, video_id)
58 'url': 'http://api.shahid.net/api/v1_1',
59 'playerType': 'episode',
62 flashvars = self._search_regex(
63 r'var\s+flashvars\s*=\s*({[^}]+})', webpage, 'flashvars', default=None)
65 for key in api_vars.keys():
66 value = self._search_regex(
67 r'\b%s\s*:\s*(?P<q>["\'])(?P<value>.+?)(?P=q)' % key,
68 flashvars, 'type', default=None, group='value')
72 player = self._download_json(
73 'https://shahid.mbc.net/arContent/getPlayerContent-param-.id-%s.type-%s.html'
74 % (video_id, api_vars['type']), video_id, 'Downloading player JSON')
77 raise ExtractorError('This video is DRM protected.', expected=True)
79 formats = self._extract_m3u8_formats(player['url'], video_id, 'mp4')
80 self._sort_formats(formats)
82 video = self._download_json(
84 api_vars['url'], api_vars['playerType'], api_vars['id'],
85 compat_urllib_parse_urlencode({
86 'apiKey': 'sh@hid0nlin3',
87 'hash': 'b2wMCTHpSmyxGqQjJFOycRmLSex+BpTK/ooxy6vHaqs=',
89 video_id, 'Downloading video JSON')
91 video = video[api_vars['playerType']]
93 title = video['title']
94 description = video.get('description')
95 thumbnail = video.get('thumbnailUrl')
96 duration = int_or_none(video.get('duration'))
97 timestamp = parse_iso8601(video.get('referenceDate'))
100 for category in video.get('genres', []) if 'name' in category]
105 'description': description,
106 'thumbnail': thumbnail,
107 'duration': duration,
108 'timestamp': timestamp,
109 'categories': categories,