npo.py 23 KB

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