npo.py 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  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, ntr.nl, omroepwnl.nl, zapp.nl and npo3.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|npo3)\.nl/(?:[^/]+/){2,}
  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. 'url': 'https://www.npo3.nl/3onderzoekt/16-09-2015/VPWON_1239870',
  144. 'only_matching': True,
  145. }, {
  146. # live stream
  147. 'url': 'npo:LI_NL1_4188102',
  148. 'only_matching': True,
  149. }, {
  150. 'url': 'http://www.npo.nl/radio-gaga/13-06-2017/BNN_101383373',
  151. 'only_matching': True,
  152. }, {
  153. 'url': 'https://www.zapp.nl/1803-skelterlab/instructie-video-s/740-instructievideo-s/POMS_AT_11736927',
  154. 'only_matching': True,
  155. }]
  156. def _real_extract(self, url):
  157. video_id = self._match_id(url)
  158. return self._get_info(video_id)
  159. def _get_info(self, video_id):
  160. metadata = self._download_json(
  161. 'http://e.omroep.nl/metadata/%s' % video_id,
  162. video_id,
  163. # We have to remove the javascript callback
  164. transform_source=strip_jsonp,
  165. )
  166. error = metadata.get('error')
  167. if error:
  168. raise ExtractorError(error, expected=True)
  169. # For some videos actual video id (prid) is different (e.g. for
  170. # http://www.omroepwnl.nl/video/fragment/vandaag-de-dag-verkiezingen__POMS_WNL_853698
  171. # video id is POMS_WNL_853698 but prid is POW_00996502)
  172. video_id = metadata.get('prid') or video_id
  173. # titel is too generic in some cases so utilize aflevering_titel as well
  174. # when available (e.g. http://tegenlicht.vpro.nl/afleveringen/2014-2015/access-to-africa.html)
  175. title = metadata['titel']
  176. sub_title = metadata.get('aflevering_titel')
  177. if sub_title and sub_title != title:
  178. title += ': %s' % sub_title
  179. token = self._get_token(video_id)
  180. formats = []
  181. urls = set()
  182. quality = qualities(['adaptive', 'wmv_sb', 'h264_sb', 'wmv_bb', 'h264_bb', 'wvc1_std', 'h264_std'])
  183. items = self._download_json(
  184. 'http://ida.omroep.nl/app.php/%s' % video_id, video_id,
  185. 'Downloading formats JSON', query={
  186. 'adaptive': 'yes',
  187. 'token': token,
  188. })['items'][0]
  189. for num, item in enumerate(items):
  190. item_url = item.get('url')
  191. if not item_url or item_url in urls:
  192. continue
  193. urls.add(item_url)
  194. format_id = self._search_regex(
  195. r'video/ida/([^/]+)', item_url, 'format id',
  196. default=None)
  197. def add_format_url(format_url):
  198. formats.append({
  199. 'url': format_url,
  200. 'format_id': format_id,
  201. 'quality': quality(format_id),
  202. })
  203. # Example: http://www.npo.nl/de-nieuwe-mens-deel-1/21-07-2010/WO_VPRO_043706
  204. if item.get('contentType') in ('url', 'audio'):
  205. add_format_url(item_url)
  206. continue
  207. try:
  208. stream_info = self._download_json(
  209. item_url + '&type=json', video_id,
  210. 'Downloading %s stream JSON'
  211. % item.get('label') or item.get('format') or format_id or num)
  212. except ExtractorError as ee:
  213. if isinstance(ee.cause, compat_HTTPError) and ee.cause.code == 404:
  214. error = (self._parse_json(
  215. ee.cause.read().decode(), video_id,
  216. fatal=False) or {}).get('errorstring')
  217. if error:
  218. raise ExtractorError(error, expected=True)
  219. raise
  220. # Stream URL instead of JSON, example: npo:LI_NL1_4188102
  221. if isinstance(stream_info, compat_str):
  222. if not stream_info.startswith('http'):
  223. continue
  224. video_url = stream_info
  225. # JSON
  226. else:
  227. video_url = stream_info.get('url')
  228. if not video_url or video_url in urls:
  229. continue
  230. urls.add(item_url)
  231. if determine_ext(video_url) == 'm3u8':
  232. formats.extend(self._extract_m3u8_formats(
  233. video_url, video_id, ext='mp4',
  234. entry_protocol='m3u8_native', m3u8_id='hls', fatal=False))
  235. else:
  236. add_format_url(video_url)
  237. is_live = metadata.get('medium') == 'live'
  238. if not is_live:
  239. for num, stream in enumerate(metadata.get('streams', [])):
  240. stream_url = stream.get('url')
  241. if not stream_url or stream_url in urls:
  242. continue
  243. urls.add(stream_url)
  244. # smooth streaming is not supported
  245. stream_type = stream.get('type', '').lower()
  246. if stream_type in ['ss', 'ms']:
  247. continue
  248. if stream_type == 'hds':
  249. f4m_formats = self._extract_f4m_formats(
  250. stream_url, video_id, fatal=False)
  251. # f4m downloader downloads only piece of live stream
  252. for f4m_format in f4m_formats:
  253. f4m_format['preference'] = -1
  254. formats.extend(f4m_formats)
  255. elif stream_type == 'hls':
  256. formats.extend(self._extract_m3u8_formats(
  257. stream_url, video_id, ext='mp4', fatal=False))
  258. # Example: http://www.npo.nl/de-nieuwe-mens-deel-1/21-07-2010/WO_VPRO_043706
  259. elif '.asf' in stream_url:
  260. asx = self._download_xml(
  261. stream_url, video_id,
  262. 'Downloading stream %d ASX playlist' % num,
  263. transform_source=fix_xml_ampersands, fatal=False)
  264. if not asx:
  265. continue
  266. ref = asx.find('./ENTRY/Ref')
  267. if ref is None:
  268. continue
  269. video_url = ref.get('href')
  270. if not video_url or video_url in urls:
  271. continue
  272. urls.add(video_url)
  273. formats.append({
  274. 'url': video_url,
  275. 'ext': stream.get('formaat', 'asf'),
  276. 'quality': stream.get('kwaliteit'),
  277. 'preference': -10,
  278. })
  279. else:
  280. formats.append({
  281. 'url': stream_url,
  282. 'quality': stream.get('kwaliteit'),
  283. })
  284. self._sort_formats(formats)
  285. subtitles = {}
  286. if metadata.get('tt888') == 'ja':
  287. subtitles['nl'] = [{
  288. 'ext': 'vtt',
  289. 'url': 'http://tt888.omroep.nl/tt888/%s' % video_id,
  290. }]
  291. return {
  292. 'id': video_id,
  293. 'title': self._live_title(title) if is_live else title,
  294. 'description': metadata.get('info'),
  295. 'thumbnail': metadata.get('images', [{'url': None}])[-1]['url'],
  296. 'upload_date': unified_strdate(metadata.get('gidsdatum')),
  297. 'duration': parse_duration(metadata.get('tijdsduur')),
  298. 'formats': formats,
  299. 'subtitles': subtitles,
  300. 'is_live': is_live,
  301. }
  302. class NPOLiveIE(NPOBaseIE):
  303. IE_NAME = 'npo.nl:live'
  304. _VALID_URL = r'https?://(?:www\.)?npo\.nl/live(?:/(?P<id>[^/?#&]+))?'
  305. _TESTS = [{
  306. 'url': 'http://www.npo.nl/live/npo-1',
  307. 'info_dict': {
  308. 'id': 'LI_NL1_4188102',
  309. 'display_id': 'npo-1',
  310. 'ext': 'mp4',
  311. 'title': 're:^NPO 1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
  312. 'is_live': True,
  313. },
  314. 'params': {
  315. 'skip_download': True,
  316. }
  317. }, {
  318. 'url': 'http://www.npo.nl/live',
  319. 'only_matching': True,
  320. }]
  321. def _real_extract(self, url):
  322. display_id = self._match_id(url) or 'npo-1'
  323. webpage = self._download_webpage(url, display_id)
  324. live_id = self._search_regex(
  325. [r'media-id="([^"]+)"', r'data-prid="([^"]+)"'], webpage, 'live id')
  326. return {
  327. '_type': 'url_transparent',
  328. 'url': 'npo:%s' % live_id,
  329. 'ie_key': NPOIE.ie_key(),
  330. 'id': live_id,
  331. 'display_id': display_id,
  332. }
  333. class NPORadioIE(InfoExtractor):
  334. IE_NAME = 'npo.nl:radio'
  335. _VALID_URL = r'https?://(?:www\.)?npo\.nl/radio/(?P<id>[^/]+)/?$'
  336. _TEST = {
  337. 'url': 'http://www.npo.nl/radio/radio-1',
  338. 'info_dict': {
  339. 'id': 'radio-1',
  340. 'ext': 'mp3',
  341. 'title': 're:^NPO Radio 1 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
  342. 'is_live': True,
  343. },
  344. 'params': {
  345. 'skip_download': True,
  346. }
  347. }
  348. @staticmethod
  349. def _html_get_attribute_regex(attribute):
  350. return r'{0}\s*=\s*\'([^\']+)\''.format(attribute)
  351. def _real_extract(self, url):
  352. video_id = self._match_id(url)
  353. webpage = self._download_webpage(url, video_id)
  354. title = self._html_search_regex(
  355. self._html_get_attribute_regex('data-channel'), webpage, 'title')
  356. stream = self._parse_json(
  357. self._html_search_regex(self._html_get_attribute_regex('data-streams'), webpage, 'data-streams'),
  358. video_id)
  359. codec = stream.get('codec')
  360. return {
  361. 'id': video_id,
  362. 'url': stream['url'],
  363. 'title': self._live_title(title),
  364. 'acodec': codec,
  365. 'ext': codec,
  366. 'is_live': True,
  367. }
  368. class NPORadioFragmentIE(InfoExtractor):
  369. IE_NAME = 'npo.nl:radio:fragment'
  370. _VALID_URL = r'https?://(?:www\.)?npo\.nl/radio/[^/]+/fragment/(?P<id>\d+)'
  371. _TEST = {
  372. 'url': 'http://www.npo.nl/radio/radio-5/fragment/174356',
  373. 'md5': 'dd8cc470dad764d0fdc70a9a1e2d18c2',
  374. 'info_dict': {
  375. 'id': '174356',
  376. 'ext': 'mp3',
  377. 'title': 'Jubileumconcert Willeke Alberti',
  378. },
  379. }
  380. def _real_extract(self, url):
  381. audio_id = self._match_id(url)
  382. webpage = self._download_webpage(url, audio_id)
  383. title = self._html_search_regex(
  384. r'href="/radio/[^/]+/fragment/%s" title="([^"]+)"' % audio_id,
  385. webpage, 'title')
  386. audio_url = self._search_regex(
  387. r"data-streams='([^']+)'", webpage, 'audio url')
  388. return {
  389. 'id': audio_id,
  390. 'url': audio_url,
  391. 'title': title,
  392. }
  393. class NPODataMidEmbedIE(InfoExtractor):
  394. def _real_extract(self, url):
  395. display_id = self._match_id(url)
  396. webpage = self._download_webpage(url, display_id)
  397. video_id = self._search_regex(
  398. r'data-mid=(["\'])(?P<id>(?:(?!\1).)+)\1', webpage, 'video_id', group='id')
  399. return {
  400. '_type': 'url_transparent',
  401. 'ie_key': 'NPO',
  402. 'url': 'npo:%s' % video_id,
  403. 'display_id': display_id
  404. }
  405. class SchoolTVIE(NPODataMidEmbedIE):
  406. IE_NAME = 'schooltv'
  407. _VALID_URL = r'https?://(?:www\.)?schooltv\.nl/video/(?P<id>[^/?#&]+)'
  408. _TEST = {
  409. 'url': 'http://www.schooltv.nl/video/ademhaling-de-hele-dag-haal-je-adem-maar-wat-gebeurt-er-dan-eigenlijk-in-je-lichaam/',
  410. 'info_dict': {
  411. 'id': 'WO_NTR_429477',
  412. 'display_id': 'ademhaling-de-hele-dag-haal-je-adem-maar-wat-gebeurt-er-dan-eigenlijk-in-je-lichaam',
  413. 'title': 'Ademhaling: De hele dag haal je adem. Maar wat gebeurt er dan eigenlijk in je lichaam?',
  414. 'ext': 'mp4',
  415. 'description': 'md5:abfa0ff690adb73fd0297fd033aaa631'
  416. },
  417. 'params': {
  418. # Skip because of m3u8 download
  419. 'skip_download': True
  420. }
  421. }
  422. class HetKlokhuisIE(NPODataMidEmbedIE):
  423. IE_NAME = 'hetklokhuis'
  424. _VALID_URL = r'https?://(?:www\.)?hetklokhuis\.nl/[^/]+/\d+/(?P<id>[^/?#&]+)'
  425. _TEST = {
  426. 'url': 'http://hetklokhuis.nl/tv-uitzending/3471/Zwaartekrachtsgolven',
  427. 'info_dict': {
  428. 'id': 'VPWON_1260528',
  429. 'display_id': 'Zwaartekrachtsgolven',
  430. 'ext': 'm4v',
  431. 'title': 'Het Klokhuis: Zwaartekrachtsgolven',
  432. 'description': 'md5:c94f31fb930d76c2efa4a4a71651dd48',
  433. 'upload_date': '20170223',
  434. },
  435. 'params': {
  436. 'skip_download': True
  437. }
  438. }
  439. class NPOPlaylistBaseIE(NPOIE):
  440. def _real_extract(self, url):
  441. playlist_id = self._match_id(url)
  442. webpage = self._download_webpage(url, playlist_id)
  443. entries = [
  444. self.url_result('npo:%s' % video_id if not video_id.startswith('http') else video_id)
  445. for video_id in orderedSet(re.findall(self._PLAYLIST_ENTRY_RE, webpage))
  446. ]
  447. playlist_title = self._html_search_regex(
  448. self._PLAYLIST_TITLE_RE, webpage, 'playlist title',
  449. default=None) or self._og_search_title(webpage)
  450. return self.playlist_result(entries, playlist_id, playlist_title)
  451. class VPROIE(NPOPlaylistBaseIE):
  452. IE_NAME = 'vpro'
  453. _VALID_URL = r'https?://(?:www\.)?(?:(?:tegenlicht\.)?vpro|2doc)\.nl/(?:[^/]+/)*(?P<id>[^/]+)\.html'
  454. _PLAYLIST_TITLE_RE = (r'<h1[^>]+class=["\'].*?\bmedia-platform-title\b.*?["\'][^>]*>([^<]+)',
  455. r'<h5[^>]+class=["\'].*?\bmedia-platform-subtitle\b.*?["\'][^>]*>([^<]+)')
  456. _PLAYLIST_ENTRY_RE = r'data-media-id="([^"]+)"'
  457. _TESTS = [
  458. {
  459. 'url': 'http://tegenlicht.vpro.nl/afleveringen/2012-2013/de-toekomst-komt-uit-afrika.html',
  460. 'md5': 'f8065e4e5a7824068ed3c7e783178f2c',
  461. 'info_dict': {
  462. 'id': 'VPWON_1169289',
  463. 'ext': 'm4v',
  464. 'title': 'De toekomst komt uit Afrika',
  465. 'description': 'md5:52cf4eefbc96fffcbdc06d024147abea',
  466. 'upload_date': '20130225',
  467. },
  468. 'skip': 'Video gone',
  469. },
  470. {
  471. 'url': 'http://www.vpro.nl/programmas/2doc/2015/sergio-herman.html',
  472. 'info_dict': {
  473. 'id': 'sergio-herman',
  474. 'title': 'sergio herman: fucking perfect',
  475. },
  476. 'playlist_count': 2,
  477. },
  478. {
  479. # playlist with youtube embed
  480. 'url': 'http://www.vpro.nl/programmas/2doc/2015/education-education.html',
  481. 'info_dict': {
  482. 'id': 'education-education',
  483. 'title': 'education education',
  484. },
  485. 'playlist_count': 2,
  486. },
  487. {
  488. 'url': 'http://www.2doc.nl/documentaires/series/2doc/2015/oktober/de-tegenprestatie.html',
  489. 'info_dict': {
  490. 'id': 'de-tegenprestatie',
  491. 'title': 'De Tegenprestatie',
  492. },
  493. 'playlist_count': 2,
  494. }, {
  495. 'url': 'http://www.2doc.nl/speel~VARA_101375237~mh17-het-verdriet-van-nederland~.html',
  496. 'info_dict': {
  497. 'id': 'VARA_101375237',
  498. 'ext': 'm4v',
  499. 'title': 'MH17: Het verdriet van Nederland',
  500. 'description': 'md5:09e1a37c1fdb144621e22479691a9f18',
  501. 'upload_date': '20150716',
  502. },
  503. 'params': {
  504. # Skip because of m3u8 download
  505. 'skip_download': True
  506. },
  507. }
  508. ]
  509. class WNLIE(NPOPlaylistBaseIE):
  510. IE_NAME = 'wnl'
  511. _VALID_URL = r'https?://(?:www\.)?omroepwnl\.nl/video/detail/(?P<id>[^/]+)__\d+'
  512. _PLAYLIST_TITLE_RE = r'(?s)<h1[^>]+class="subject"[^>]*>(.+?)</h1>'
  513. _PLAYLIST_ENTRY_RE = r'<a[^>]+href="([^"]+)"[^>]+class="js-mid"[^>]*>Deel \d+'
  514. _TESTS = [{
  515. 'url': 'http://www.omroepwnl.nl/video/detail/vandaag-de-dag-6-mei__060515',
  516. 'info_dict': {
  517. 'id': 'vandaag-de-dag-6-mei',
  518. 'title': 'Vandaag de Dag 6 mei',
  519. },
  520. 'playlist_count': 4,
  521. }]
  522. class AndereTijdenIE(NPOPlaylistBaseIE):
  523. IE_NAME = 'anderetijden'
  524. _VALID_URL = r'https?://(?:www\.)?anderetijden\.nl/programma/(?:[^/]+/)+(?P<id>[^/?#&]+)'
  525. _PLAYLIST_TITLE_RE = r'(?s)<h1[^>]+class=["\'].*?\bpage-title\b.*?["\'][^>]*>(.+?)</h1>'
  526. _PLAYLIST_ENTRY_RE = r'<figure[^>]+class=["\']episode-container episode-page["\'][^>]+data-prid=["\'](.+?)["\']'
  527. _TESTS = [{
  528. 'url': 'http://anderetijden.nl/programma/1/Andere-Tijden/aflevering/676/Duitse-soldaten-over-de-Slag-bij-Arnhem',
  529. 'info_dict': {
  530. 'id': 'Duitse-soldaten-over-de-Slag-bij-Arnhem',
  531. 'title': 'Duitse soldaten over de Slag bij Arnhem',
  532. },
  533. 'playlist_count': 3,
  534. }]