You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

592 lines
20 KiB

  1. from __future__ import unicode_literals
  2. import re
  3. from .common import InfoExtractor
  4. from ..compat import (
  5. compat_HTTPError,
  6. compat_str,
  7. )
  8. from ..utils import (
  9. determine_ext,
  10. ExtractorError,
  11. fix_xml_ampersands,
  12. orderedSet,
  13. parse_duration,
  14. qualities,
  15. strip_jsonp,
  16. unified_strdate,
  17. )
  18. class NPOBaseIE(InfoExtractor):
  19. def _get_token(self, video_id):
  20. return self._download_json(
  21. 'http://ida.omroep.nl/app.php/auth', video_id,
  22. note='Downloading token')['token']
  23. class NPOIE(NPOBaseIE):
  24. IE_NAME = 'npo'
  25. IE_DESC = 'npo.nl and ntr.nl'
  26. _VALID_URL = r'''(?x)
  27. (?:
  28. npo:|
  29. https?://
  30. (?:www\.)?
  31. (?:
  32. npo\.nl/(?!live|radio)(?:[^/]+/){2}|
  33. ntr\.nl/(?:[^/]+/){2,}|
  34. omroepwnl\.nl/video/fragment/[^/]+__|
  35. zapp\.nl/[^/]+/[^/]+/
  36. )
  37. )
  38. (?P<id>[^/?#]+)
  39. '''
  40. _TESTS = [{
  41. 'url': 'http://www.npo.nl/nieuwsuur/22-06-2014/VPWON_1220719',
  42. 'md5': '4b3f9c429157ec4775f2c9cb7b911016',
  43. 'info_dict': {
  44. 'id': 'VPWON_1220719',
  45. 'ext': 'm4v',
  46. 'title': 'Nieuwsuur',
  47. 'description': 'Dagelijks tussen tien en elf: nieuws, sport en achtergronden.',
  48. 'upload_date': '20140622',
  49. },
  50. }, {
  51. 'url': 'http://www.npo.nl/de-mega-mike-mega-thomas-show/27-02-2009/VARA_101191800',
  52. 'md5': 'da50a5787dbfc1603c4ad80f31c5120b',
  53. 'info_dict': {
  54. 'id': 'VARA_101191800',
  55. 'ext': 'm4v',
  56. 'title': 'De Mega Mike & Mega Thomas show: The best of.',
  57. 'description': 'md5:3b74c97fc9d6901d5a665aac0e5400f4',
  58. 'upload_date': '20090227',
  59. 'duration': 2400,
  60. },
  61. }, {
  62. 'url': 'http://www.npo.nl/tegenlicht/25-02-2013/VPWON_1169289',
  63. 'md5': 'f8065e4e5a7824068ed3c7e783178f2c',
  64. 'info_dict': {
  65. 'id': 'VPWON_1169289',
  66. 'ext': 'm4v',
  67. 'title': 'Tegenlicht: Zwart geld. De toekomst komt uit Afrika',
  68. 'description': 'md5:52cf4eefbc96fffcbdc06d024147abea',
  69. 'upload_date': '20130225',
  70. 'duration': 3000,
  71. },
  72. }, {
  73. 'url': 'http://www.npo.nl/de-nieuwe-mens-deel-1/21-07-2010/WO_VPRO_043706',
  74. 'info_dict': {
  75. 'id': 'WO_VPRO_043706',
  76. 'ext': 'm4v',
  77. 'title': 'De nieuwe mens - Deel 1',
  78. 'description': 'md5:518ae51ba1293ffb80d8d8ce90b74e4b',
  79. 'duration': 4680,
  80. },
  81. 'params': {
  82. 'skip_download': True,
  83. }
  84. }, {
  85. # non asf in streams
  86. 'url': 'http://www.npo.nl/hoe-gaat-europa-verder-na-parijs/10-01-2015/WO_NOS_762771',
  87. 'info_dict': {
  88. 'id': 'WO_NOS_762771',
  89. 'ext': 'mp4',
  90. 'title': 'Hoe gaat Europa verder na Parijs?',
  91. },
  92. 'params': {
  93. 'skip_download': True,
  94. }
  95. }, {
  96. 'url': 'http://www.ntr.nl/Aap-Poot-Pies/27/detail/Aap-poot-pies/VPWON_1233944#content',
  97. 'info_dict': {
  98. 'id': 'VPWON_1233944',
  99. 'ext': 'm4v',
  100. 'title': 'Aap, poot, pies',
  101. 'description': 'md5:c9c8005d1869ae65b858e82c01a91fde',
  102. 'upload_date': '20150508',
  103. 'duration': 599,
  104. },
  105. 'params': {
  106. 'skip_download': True,
  107. }
  108. }, {
  109. 'url': 'http://www.omroepwnl.nl/video/fragment/vandaag-de-dag-verkiezingen__POMS_WNL_853698',
  110. 'info_dict': {
  111. 'id': 'POW_00996502',
  112. 'ext': 'm4v',
  113. 'title': '''"Dit is wel een 'landslide'..."''',
  114. 'description': 'md5:f8d66d537dfb641380226e31ca57b8e8',
  115. 'upload_date': '20150508',
  116. 'duration': 462,
  117. },
  118. 'params': {
  119. 'skip_download': True,
  120. }
  121. }, {
  122. # audio
  123. 'url': 'http://www.npo.nl/jouw-stad-rotterdam/29-01-2017/RBX_FUNX_6683215/RBX_FUNX_7601437',
  124. 'info_dict': {
  125. 'id': 'RBX_FUNX_6683215',
  126. 'ext': 'mp3',
  127. 'title': 'Jouw Stad Rotterdam',
  128. 'description': 'md5:db251505244f097717ec59fabc372d9f',
  129. },
  130. 'params': {
  131. 'skip_download': True,
  132. }
  133. }, {
  134. 'url': 'http://www.zapp.nl/de-bzt-show/gemist/KN_1687547',
  135. 'only_matching': True,
  136. }, {
  137. 'url': 'http://www.zapp.nl/de-bzt-show/filmpjes/POMS_KN_7315118',
  138. 'only_matching': True,
  139. }, {
  140. 'url': 'http://www.zapp.nl/beste-vrienden-quiz/extra-video-s/WO_NTR_1067990',
  141. 'only_matching': True,
  142. }, {
  143. # live stream
  144. 'url': 'npo:LI_NL1_4188102',
  145. 'only_matching': True,
  146. }]
  147. def _real_extract(self, url):
  148. video_id = self._match_id(url)
  149. return self._get_info(video_id)
  150. def _get_info(self, video_id):
  151. metadata = self._download_json(
  152. 'http://e.omroep.nl/metadata/%s' % video_id,
  153. video_id,
  154. # We have to remove the javascript callback
  155. transform_source=strip_jsonp,
  156. )
  157. # For some videos actual video id (prid) is different (e.g. for
  158. # http://www.omroepwnl.nl/video/fragment/vandaag-de-dag-verkiezingen__POMS_WNL_853698
  159. # video id is POMS_WNL_853698 but prid is POW_00996502)
  160. video_id = metadata.get('prid') or video_id
  161. # titel is too generic in some cases so utilize aflevering_titel as well
  162. # when available (e.g. http://tegenlicht.vpro.nl/afleveringen/2014-2015/access-to-africa.html)
  163. title = metadata['titel']
  164. sub_title = metadata.get('aflevering_titel')
  165. if sub_title and sub_title != title:
  166. title += ': %s' % sub_title
  167. token = self._get_token(video_id)
  168. formats = []
  169. urls = set()
  170. quality = qualities(['adaptive', 'wmv_sb', 'h264_sb', 'wmv_bb', 'h264_bb', 'wvc1_std', 'h264_std'])
  171. items = self._download_json(
  172. 'http://ida.omroep.nl/app.php/%s' % video_id, video_id,
  173. 'Downloading formats JSON', query={
  174. 'adaptive': 'yes',
  175. 'token': token,
  176. })['items'][0]
  177. for num, item in enumerate(items):
  178. item_url = item.get('url')
  179. if not item_url or item_url in urls:
  180. continue
  181. urls.add(item_url)
  182. format_id = self._search_regex(
  183. r'video/ida/([^/]+)', item_url, 'format id',
  184. default=None)
  185. def add_format_url(format_url):
  186. formats.append({
  187. 'url': format_url,
  188. 'format_id': format_id,
  189. 'quality': quality(format_id),
  190. })
  191. # Example: http://www.npo.nl/de-nieuwe-mens-deel-1/21-07-2010/WO_VPRO_043706
  192. if item.get('contentType') in ('url', 'audio'):
  193. add_format_url(item_url)
  194. continue
  195. try:
  196. stream_info = self._download_json(
  197. item_url + '&type=json', video_id,
  198. 'Downloading %s stream JSON'
  199. % item.get('label') or item.get('format') or format_id or num)
  200. except ExtractorError as ee:
  201. if isinstance(ee.cause, compat_HTTPError) and ee.cause.code == 404:
  202. error = (self._parse_json(
  203. ee.cause.read().decode(), video_id,
  204. fatal=False) or {}).get('errorstring')
  205. if error:
  206. raise ExtractorError(error, expected=True)
  207. raise
  208. # Stream URL instead of JSON, example: npo:LI_NL1_4188102
  209. if isinstance(stream_info, compat_str):
  210. if not stream_info.startswith('http'):
  211. continue
  212. video_url = stream_info
  213. # JSON
  214. else:
  215. video_url = stream_info.get('url')
  216. if not video_url or video_url in urls:
  217. continue
  218. urls.add(item_url)
  219. if determine_ext(video_url) == 'm3u8':
  220. formats.extend(self._extract_m3u8_formats(
  221. video_url, video_id, ext='mp4',
  222. entry_protocol='m3u8_native', m3u8_id='hls', fatal=False))
  223. else:
  224. add_format_url(video_url)
  225. is_live = metadata.get('medium') == 'live'
  226. if not is_live:
  227. for num, stream in enumerate(metadata.get('streams', [])):
  228. stream_url = stream.get('url')
  229. if not stream_url or stream_url in urls:
  230. continue
  231. urls.add(stream_url)
  232. # smooth streaming is not supported
  233. stream_type = stream.get('type', '').lower()
  234. if stream_type in ['ss', 'ms']:
  235. continue
  236. if stream_type == 'hds':
  237. f4m_formats = self._extract_f4m_formats(
  238. stream_url, video_id, fatal=False)
  239. # f4m downloader downloads only piece of live stream
  240. for f4m_format in f4m_formats:
  241. f4m_format['preference'] = -1
  242. formats.extend(f4m_formats)
  243. elif stream_type == 'hls':
  244. formats.extend(self._extract_m3u8_formats(
  245. stream_url, video_id, ext='mp4', fatal=False))
  246. # Example: http://www.npo.nl/de-nieuwe-mens-deel-1/21-07-2010/WO_VPRO_043706
  247. elif '.asf' in stream_url:
  248. asx = self._download_xml(
  249. stream_url, video_id,
  250. 'Downloading stream %d ASX playlist' % num,
  251. transform_source=fix_xml_ampersands, fatal=False)
  252. if not asx:
  253. continue
  254. ref = asx.find('./ENTRY/Ref')
  255. if ref is None:
  256. continue
  257. video_url = ref.get('href')
  258. if not video_url or video_url in urls:
  259. continue
  260. urls.add(video_url)
  261. formats.append({
  262. 'url': video_url,
  263. 'ext': stream.get('formaat', 'asf'),
  264. 'quality': stream.get('kwaliteit'),
  265. 'preference': -10,
  266. })
  267. else:
  268. formats.append({
  269. 'url': stream_url,
  270. 'quality': stream.get('kwaliteit'),
  271. })
  272. self._sort_formats(formats)
  273. subtitles = {}
  274. if metadata.get('tt888') == 'ja':
  275. subtitles['nl'] = [{
  276. 'ext': 'vtt',
  277. 'url': 'http://tt888.omroep.nl/tt888/%s' % video_id,
  278. }]
  279. return {
  280. 'id': video_id,
  281. 'title': self._live_title(title) if is_live else title,
  282. 'description': metadata.get('info'),
  283. 'thumbnail': metadata.get('images', [{'url': None}])[-1]['url'],
  284. 'upload_date': unified_strdate(metadata.get('gidsdatum')),
  285. 'duration': parse_duration(metadata.get('tijdsduur')),
  286. 'formats': formats,
  287. 'subtitles': subtitles,
  288. 'is_live': is_live,
  289. }
  290. class NPOLiveIE(NPOBaseIE):
  291. IE_NAME = 'npo.nl:live'
  292. _VALID_URL = r'https?://(?:www\.)?npo\.nl/live(?:/(?P<id>[^/?#&]+))?'
  293. _TESTS = [{
  294. 'url': 'http://www.npo.nl/live/npo-1',
  295. 'info_dict': {
  296. 'id': 'LI_NL1_4188102',
  297. 'display_id': 'npo-1',
  298. 'ext': 'mp4',
  299. 'title': 're:^NPO 1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
  300. 'is_live': True,
  301. },
  302. 'params': {
  303. 'skip_download': True,
  304. }
  305. }, {
  306. 'url': 'http://www.npo.nl/live',
  307. 'only_matching': True,
  308. }]
  309. def _real_extract(self, url):
  310. display_id = self._match_id(url) or 'npo-1'
  311. webpage = self._download_webpage(url, display_id)
  312. live_id = self._search_regex(
  313. r'data-prid="([^"]+)"', webpage, 'live id')
  314. return {
  315. '_type': 'url_transparent',
  316. 'url': 'npo:%s' % live_id,
  317. 'ie_key': NPOIE.ie_key(),
  318. 'id': live_id,
  319. 'display_id': display_id,
  320. }
  321. class NPORadioIE(InfoExtractor):
  322. IE_NAME = 'npo.nl:radio'
  323. _VALID_URL = r'https?://(?:www\.)?npo\.nl/radio/(?P<id>[^/]+)/?$'
  324. _TEST = {
  325. 'url': 'http://www.npo.nl/radio/radio-1',
  326. 'info_dict': {
  327. 'id': 'radio-1',
  328. 'ext': 'mp3',
  329. 'title': 're:^NPO Radio 1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
  330. 'is_live': True,
  331. },
  332. 'params': {
  333. 'skip_download': True,
  334. }
  335. }
  336. @staticmethod
  337. def _html_get_attribute_regex(attribute):
  338. return r'{0}\s*=\s*\'([^\']+)\''.format(attribute)
  339. def _real_extract(self, url):
  340. video_id = self._match_id(url)
  341. webpage = self._download_webpage(url, video_id)
  342. title = self._html_search_regex(
  343. self._html_get_attribute_regex('data-channel'), webpage, 'title')
  344. stream = self._parse_json(
  345. self._html_search_regex(self._html_get_attribute_regex('data-streams'), webpage, 'data-streams'),
  346. video_id)
  347. codec = stream.get('codec')
  348. return {
  349. 'id': video_id,
  350. 'url': stream['url'],
  351. 'title': self._live_title(title),
  352. 'acodec': codec,
  353. 'ext': codec,
  354. 'is_live': True,
  355. }
  356. class NPORadioFragmentIE(InfoExtractor):
  357. IE_NAME = 'npo.nl:radio:fragment'
  358. _VALID_URL = r'https?://(?:www\.)?npo\.nl/radio/[^/]+/fragment/(?P<id>\d+)'
  359. _TEST = {
  360. 'url': 'http://www.npo.nl/radio/radio-5/fragment/174356',
  361. 'md5': 'dd8cc470dad764d0fdc70a9a1e2d18c2',
  362. 'info_dict': {
  363. 'id': '174356',
  364. 'ext': 'mp3',
  365. 'title': 'Jubileumconcert Willeke Alberti',
  366. },
  367. }
  368. def _real_extract(self, url):
  369. audio_id = self._match_id(url)
  370. webpage = self._download_webpage(url, audio_id)
  371. title = self._html_search_regex(
  372. r'href="/radio/[^/]+/fragment/%s" title="([^"]+)"' % audio_id,
  373. webpage, 'title')
  374. audio_url = self._search_regex(
  375. r"data-streams='([^']+)'", webpage, 'audio url')
  376. return {
  377. 'id': audio_id,
  378. 'url': audio_url,
  379. 'title': title,
  380. }
  381. class NPODataMidEmbedIE(InfoExtractor):
  382. def _real_extract(self, url):
  383. display_id = self._match_id(url)
  384. webpage = self._download_webpage(url, display_id)
  385. video_id = self._search_regex(
  386. r'data-mid=(["\'])(?P<id>(?:(?!\1).)+)\1', webpage, 'video_id', group='id')
  387. return {
  388. '_type': 'url_transparent',
  389. 'ie_key': 'NPO',
  390. 'url': 'npo:%s' % video_id,
  391. 'display_id': display_id
  392. }
  393. class SchoolTVIE(NPODataMidEmbedIE):
  394. IE_NAME = 'schooltv'
  395. _VALID_URL = r'https?://(?:www\.)?schooltv\.nl/video/(?P<id>[^/?#&]+)'
  396. _TEST = {
  397. 'url': 'http://www.schooltv.nl/video/ademhaling-de-hele-dag-haal-je-adem-maar-wat-gebeurt-er-dan-eigenlijk-in-je-lichaam/',
  398. 'info_dict': {
  399. 'id': 'WO_NTR_429477',
  400. 'display_id': 'ademhaling-de-hele-dag-haal-je-adem-maar-wat-gebeurt-er-dan-eigenlijk-in-je-lichaam',
  401. 'title': 'Ademhaling: De hele dag haal je adem. Maar wat gebeurt er dan eigenlijk in je lichaam?',
  402. 'ext': 'mp4',
  403. 'description': 'md5:abfa0ff690adb73fd0297fd033aaa631'
  404. },
  405. 'params': {
  406. # Skip because of m3u8 download
  407. 'skip_download': True
  408. }
  409. }
  410. class HetKlokhuisIE(NPODataMidEmbedIE):
  411. IE_NAME = 'hetklokhuis'
  412. _VALID_URL = r'https?://(?:www\.)?hetklokhuis.nl/[^/]+/\d+/(?P<id>[^/?#&]+)'
  413. _TEST = {
  414. 'url': 'http://hetklokhuis.nl/tv-uitzending/3471/Zwaartekrachtsgolven',
  415. 'info_dict': {
  416. 'id': 'VPWON_1260528',
  417. 'display_id': 'Zwaartekrachtsgolven',
  418. 'ext': 'm4v',
  419. 'title': 'Het Klokhuis: Zwaartekrachtsgolven',
  420. 'description': 'md5:c94f31fb930d76c2efa4a4a71651dd48',
  421. 'upload_date': '20170223',
  422. },
  423. 'params': {
  424. 'skip_download': True
  425. }
  426. }
  427. class NPOPlaylistBaseIE(NPOIE):
  428. def _real_extract(self, url):
  429. playlist_id = self._match_id(url)
  430. webpage = self._download_webpage(url, playlist_id)
  431. entries = [
  432. self.url_result('npo:%s' % video_id if not video_id.startswith('http') else video_id)
  433. for video_id in orderedSet(re.findall(self._PLAYLIST_ENTRY_RE, webpage))
  434. ]
  435. playlist_title = self._html_search_regex(
  436. self._PLAYLIST_TITLE_RE, webpage, 'playlist title',
  437. default=None) or self._og_search_title(webpage)
  438. return self.playlist_result(entries, playlist_id, playlist_title)
  439. class VPROIE(NPOPlaylistBaseIE):
  440. IE_NAME = 'vpro'
  441. _VALID_URL = r'https?://(?:www\.)?(?:(?:tegenlicht\.)?vpro|2doc)\.nl/(?:[^/]+/)*(?P<id>[^/]+)\.html'
  442. _PLAYLIST_TITLE_RE = (r'<h1[^>]+class=["\'].*?\bmedia-platform-title\b.*?["\'][^>]*>([^<]+)',
  443. r'<h5[^>]+class=["\'].*?\bmedia-platform-subtitle\b.*?["\'][^>]*>([^<]+)')
  444. _PLAYLIST_ENTRY_RE = r'data-media-id="([^"]+)"'
  445. _TESTS = [
  446. {
  447. 'url': 'http://tegenlicht.vpro.nl/afleveringen/2012-2013/de-toekomst-komt-uit-afrika.html',
  448. 'md5': 'f8065e4e5a7824068ed3c7e783178f2c',
  449. 'info_dict': {
  450. 'id': 'VPWON_1169289',
  451. 'ext': 'm4v',
  452. 'title': 'De toekomst komt uit Afrika',
  453. 'description': 'md5:52cf4eefbc96fffcbdc06d024147abea',
  454. 'upload_date': '20130225',
  455. },
  456. 'skip': 'Video gone',
  457. },
  458. {
  459. 'url': 'http://www.vpro.nl/programmas/2doc/2015/sergio-herman.html',
  460. 'info_dict': {
  461. 'id': 'sergio-herman',
  462. 'title': 'sergio herman: fucking perfect',
  463. },
  464. 'playlist_count': 2,
  465. },
  466. {
  467. # playlist with youtube embed
  468. 'url': 'http://www.vpro.nl/programmas/2doc/2015/education-education.html',
  469. 'info_dict': {
  470. 'id': 'education-education',
  471. 'title': 'education education',
  472. },
  473. 'playlist_count': 2,
  474. },
  475. {
  476. 'url': 'http://www.2doc.nl/documentaires/series/2doc/2015/oktober/de-tegenprestatie.html',
  477. 'info_dict': {
  478. 'id': 'de-tegenprestatie',
  479. 'title': 'De Tegenprestatie',
  480. },
  481. 'playlist_count': 2,
  482. }, {
  483. 'url': 'http://www.2doc.nl/speel~VARA_101375237~mh17-het-verdriet-van-nederland~.html',
  484. 'info_dict': {
  485. 'id': 'VARA_101375237',
  486. 'ext': 'm4v',
  487. 'title': 'MH17: Het verdriet van Nederland',
  488. 'description': 'md5:09e1a37c1fdb144621e22479691a9f18',
  489. 'upload_date': '20150716',
  490. },
  491. 'params': {
  492. # Skip because of m3u8 download
  493. 'skip_download': True
  494. },
  495. }
  496. ]
  497. class WNLIE(NPOPlaylistBaseIE):
  498. IE_NAME = 'wnl'
  499. _VALID_URL = r'https?://(?:www\.)?omroepwnl\.nl/video/detail/(?P<id>[^/]+)__\d+'
  500. _PLAYLIST_TITLE_RE = r'(?s)<h1[^>]+class="subject"[^>]*>(.+?)</h1>'
  501. _PLAYLIST_ENTRY_RE = r'<a[^>]+href="([^"]+)"[^>]+class="js-mid"[^>]*>Deel \d+'
  502. _TESTS = [{
  503. 'url': 'http://www.omroepwnl.nl/video/detail/vandaag-de-dag-6-mei__060515',
  504. 'info_dict': {
  505. 'id': 'vandaag-de-dag-6-mei',
  506. 'title': 'Vandaag de Dag 6 mei',
  507. },
  508. 'playlist_count': 4,
  509. }]
  510. class AndereTijdenIE(NPOPlaylistBaseIE):
  511. IE_NAME = 'anderetijden'
  512. _VALID_URL = r'https?://(?:www\.)?anderetijden\.nl/programma/(?:[^/]+/)+(?P<id>[^/?#&]+)'
  513. _PLAYLIST_TITLE_RE = r'(?s)<h1[^>]+class=["\'].*?\bpage-title\b.*?["\'][^>]*>(.+?)</h1>'
  514. _PLAYLIST_ENTRY_RE = r'<figure[^>]+class=["\']episode-container episode-page["\'][^>]+data-prid=["\'](.+?)["\']'
  515. _TESTS = [{
  516. 'url': 'http://anderetijden.nl/programma/1/Andere-Tijden/aflevering/676/Duitse-soldaten-over-de-Slag-bij-Arnhem',
  517. 'info_dict': {
  518. 'id': 'Duitse-soldaten-over-de-Slag-bij-Arnhem',
  519. 'title': 'Duitse soldaten over de Slag bij Arnhem',
  520. },
  521. 'playlist_count': 3,
  522. }]