2 from __future__ import unicode_literals
4 from .common import InfoExtractor
13 class VootIE(InfoExtractor):
14 _VALID_URL = r'https?://(?:www\.)?voot\.com/(?:[^/]+/)+(?P<id>\d+)'
15 _GEO_COUNTRIES = ['IN']
17 'url': 'https://www.voot.com/shows/ishq-ka-rang-safed/1/360558/is-this-the-end-of-kamini-/441353',
21 'title': 'Ishq Ka Rang Safed - Season 01 - Episode 340',
22 'description': 'md5:06291fbbbc4dcbe21235c40c262507c1',
23 'timestamp': 1472162937,
24 'upload_date': '20160825',
26 'series': 'Ishq Ka Rang Safed',
28 'episode': 'Is this the end of Kamini?',
29 'episode_number': 340,
34 'skip_download': True,
36 'expected_warnings': ['Failed to download m3u8 information'],
38 'url': 'https://www.voot.com/kids/characters/mighty-cat-masked-niyander-e-/400478/school-bag-disappears/440925',
39 'only_matching': True,
41 'url': 'https://www.voot.com/movies/pandavas-5/424627',
42 'only_matching': True,
45 def _real_extract(self, url):
46 video_id = self._match_id(url)
48 media_info = self._download_json(
49 'https://wapi.voot.com/ws/ott/getMediaInfo.json', video_id,
56 status_code = try_get(media_info, lambda x: x['status']['code'], int)
58 raise ExtractorError(media_info['status']['message'], expected=True)
60 media = media_info['assets']
62 entry_id = media['EntryId']
63 title = media['MediaName']
64 formats = self._extract_m3u8_formats(
65 'https://cdnapisec.kaltura.com/p/1982551/playManifest/pt/https/f/applehttp/t/web/e/' + entry_id,
66 video_id, 'mp4', m3u8_id='hls')
67 self._sort_formats(formats)
69 description, series, season_number, episode, episode_number = [None] * 5
71 for meta in try_get(media, lambda x: x['Metas'], list) or []:
72 key, value = meta.get('Key'), meta.get('Value')
73 if not key or not value:
75 if key == 'ContentSynopsis':
77 elif key == 'RefSeriesTitle':
79 elif key == 'RefSeriesSeason':
80 season_number = int_or_none(value)
81 elif key == 'EpisodeMainTitle':
83 elif key == 'EpisodeNo':
84 episode_number = int_or_none(value)
87 'extractor_key': 'Kaltura',
90 'description': description,
92 'season_number': season_number,
94 'episode_number': episode_number,
95 'timestamp': unified_timestamp(media.get('CreationDate')),
96 'duration': int_or_none(media.get('Duration')),
97 'view_count': int_or_none(media.get('ViewCounter')),
98 'like_count': int_or_none(media.get('like_counter')),