2 from __future__ 
import unicode_literals
 
   4 from .common 
import InfoExtractor
 
   6     compat_urllib_parse_unquote_plus
 
  16 class NDTVIE(InfoExtractor
): 
  17     _VALID_URL 
= r
'https?://(?:[^/]+\.)?ndtv\.com/(?:[^/]+/)*videos?/?(?:[^/]+/)*[^/?^&]+-(?P<id>\d+)' 
  21             'url': 'https://khabar.ndtv.com/video/show/prime-time/prime-time-ill-system-and-poor-education-468818', 
  22             'md5': '78efcf3880ef3fd9b83d405ca94a38eb', 
  26                 'title': "प्राइम टाइम: सिस्टम बीमार, स्कूल बदहाल", 
  27                 'description': 'md5:f410512f1b49672e5695dea16ef2731d', 
  28                 'upload_date': '20170928', 
  30                 'thumbnail': r
're:https?://.*\.jpg', 
  35             'url': 'http://movies.ndtv.com/videos/cracker-free-diwali-wishes-from-karan-johar-kriti-sanon-other-stars-470304', 
  36             'md5': 'f1d709352305b44443515ac56b45aa46', 
  40                 'title': "Cracker-Free Diwali Wishes From Karan Johar, Kriti Sanon & Other Stars", 
  41                 'description': 'md5:f115bba1adf2f6433fa7c1ade5feb465', 
  42                 'upload_date': '20171019', 
  44                 'thumbnail': r
're:https?://.*\.jpg', 
  48             'url': 'https://www.ndtv.com/video/news/news/delhi-s-air-quality-status-report-after-diwali-is-very-poor-470372', 
  52             'url': 'https://auto.ndtv.com/videos/the-cnb-daily-october-13-2017-469935', 
  56             'url': 'https://sports.ndtv.com/cricket/videos/2nd-t20i-rock-thrown-at-australia-cricket-team-bus-after-win-over-india-469764', 
  60             'url': 'http://gadgets.ndtv.com/videos/uncharted-the-lost-legacy-review-465568', 
  64             'url': 'http://profit.ndtv.com/videos/news/video-indian-economy-on-very-solid-track-international-monetary-fund-chief-470040', 
  68             'url': 'http://food.ndtv.com/video-basil-seeds-coconut-porridge-419083', 
  72             'url': 'https://doctor.ndtv.com/videos/top-health-stories-of-the-week-467396', 
  76             'url': 'https://swirlster.ndtv.com/video/how-to-make-friends-at-work-469324', 
  81     def _real_extract(self
, url
): 
  82         video_id 
= self
._match
_id
(url
) 
  83         webpage 
= self
._download
_webpage
(url
, video_id
) 
  85         # '__title' does not contain extra words such as sub-site name, "Video" etc. 
  86         title 
= compat_urllib_parse_unquote_plus( 
  87             self
._search
_regex
(r
"__title\s*=\s*'([^']+)'", webpage
, 'title', default
=None) or 
  88             self
._og
_search
_title
(webpage
)) 
  90         filename 
= self
._search
_regex
( 
  91             r
"(?:__)?filename\s*[:=]\s*'([^']+)'", webpage
, 'video filename') 
  92         # in "movies" sub-site pages, filename is URL 
  93         video_url 
= urljoin('https://ndtvod.bc-ssl.cdn.bitgravity.com/23372/ndtv/', filename
.lstrip('/')) 
  95         # "doctor" sub-site has MM:SS format 
  96         duration 
= parse_duration(self
._search
_regex
( 
  97             r
"(?:__)?duration\s*[:=]\s*'([^']+)'", webpage
, 'duration', fatal
=False)) 
  99         # "sports", "doctor", "swirlster" sub-sites don't have 'publish-date' 
 100         upload_date 
= unified_strdate(self
._html
_search
_meta
( 
 101             'publish-date', webpage
, 'upload date', default
=None) or self
._html
_search
_meta
( 
 102             'uploadDate', webpage
, 'upload date', default
=None) or self
._search
_regex
( 
 103             r
'datePublished"\s*:\s*"([^"]+)"', webpage
, 'upload date', fatal
=False)) 
 105         description 
= remove_end(self
._og
_search
_description
(webpage
), ' (Read more)') 
 111             'description': description
, 
 112             'thumbnail': self
._og
_search
_thumbnail
(webpage
), 
 113             'duration': duration
, 
 114             'upload_date': upload_date
,