aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-12-05 01:19:37 +0700
committerSergey M․ <dstftw@gmail.com>2020-12-05 01:20:14 +0700
commit41c92b8d02c33d6018991f9e5d3a9b616e325355 (patch)
treec5ae796c3d42ed76b857a51c4d95b790db62876c
parentfe0c28f9569bb99f3bddd59b7f4b2be919368f22 (diff)
downloadyoutube-dl-41c92b8d02c33d6018991f9e5d3a9b616e325355.tar.xz
[nrktv:season] Improve extraction
-rw-r--r--youtube_dl/extractor/nrk.py99
1 files changed, 83 insertions, 16 deletions
diff --git a/youtube_dl/extractor/nrk.py b/youtube_dl/extractor/nrk.py
index 8595f55b1..4d5f4c5ba 100644
--- a/youtube_dl/extractor/nrk.py
+++ b/youtube_dl/extractor/nrk.py
@@ -1,6 +1,7 @@
# coding: utf-8
from __future__ import unicode_literals
+import itertools
import re
from .common import InfoExtractor
@@ -17,6 +18,7 @@ from ..utils import (
parse_age_limit,
parse_duration,
try_get,
+ urljoin,
url_or_none,
)
@@ -547,44 +549,109 @@ class NRKTVSerieBaseIE(InfoExtractor):
return []
entries = []
for episode in entry_list:
- nrk_id = episode.get('prfId')
+ nrk_id = episode.get('prfId') or episode.get('episodeId')
if not nrk_id or not isinstance(nrk_id, compat_str):
continue
+ if not re.match(NRKTVIE._EPISODE_RE, nrk_id):
+ continue
entries.append(self.url_result(
'nrk:%s' % nrk_id, ie=NRKIE.ie_key(), video_id=nrk_id))
return entries
class NRKTVSeasonIE(NRKTVSerieBaseIE):
- _VALID_URL = r'https?://tv\.nrk\.no/serie/[^/]+/sesong/(?P<id>\d+)'
- _TEST = {
+ _VALID_URL = r'https?://(?P<domain>tv|radio)\.nrk\.no/serie/(?P<serie>[^/]+)/(?:sesong/)?(?P<id>\d+)'
+ _TESTS = [{
'url': 'https://tv.nrk.no/serie/backstage/sesong/1',
'info_dict': {
- 'id': '1',
+ 'id': 'backstage/1',
'title': 'Sesong 1',
},
'playlist_mincount': 30,
- }
+ }, {
+ # no /sesong/ in path
+ 'url': 'https://tv.nrk.no/serie/lindmo/2016',
+ 'info_dict': {
+ 'id': 'lindmo/2016',
+ 'title': '2016',
+ },
+ 'playlist_mincount': 29,
+ }, {
+ # weird nested _embedded in catalog JSON response
+ 'url': 'https://radio.nrk.no/serie/dickie-dick-dickens/sesong/1',
+ 'info_dict': {
+ 'id': 'dickie-dick-dickens/1',
+ 'title': 'Sesong 1',
+ },
+ 'playlist_mincount': 11,
+ }, {
+ # 841 entries, multi page
+ 'url': 'https://radio.nrk.no/serie/dagsnytt/sesong/201509',
+ 'info_dict': {
+ 'id': 'dagsnytt/201509',
+ 'title': 'September 2015',
+ },
+ 'playlist_mincount': 841,
+ }, {
+ # 180 entries, single page
+ 'url': 'https://tv.nrk.no/serie/spangas/sesong/1',
+ 'only_matching': True,
+ }]
@classmethod
def suitable(cls, url):
return (False if NRKTVIE.suitable(url) or NRKTVEpisodeIE.suitable(url)
else super(NRKTVSeasonIE, cls).suitable(url))
- def _real_extract(self, url):
- display_id = self._match_id(url)
-
- webpage = self._download_webpage(url, display_id)
-
- series = self._extract_series(webpage, display_id)
+ _ASSETS_KEYS = ('episodes', 'instalments',)
+
+ def _entries(self, data, display_id):
+ for page_num in itertools.count(1):
+ embedded = data.get('_embedded')
+ if not isinstance(embedded, dict):
+ break
+ # Extract entries
+ for asset_key in self._ASSETS_KEYS:
+ entries = try_get(
+ embedded,
+ (lambda x: x[asset_key]['_embedded'][asset_key],
+ lambda x: x[asset_key]),
+ list)
+ for e in self._extract_entries(entries):
+ yield e
+ # Find next URL
+ for asset_key in self._ASSETS_KEYS:
+ next_url = urljoin(
+ 'https://psapi.nrk.no/',
+ try_get(
+ data,
+ (lambda x: x['_links']['next']['href'],
+ lambda x: x['_embedded'][asset_key]['_links']['next']['href']),
+ compat_str))
+ if next_url:
+ break
+ if not next_url:
+ break
+ data = self._download_json(
+ next_url, display_id,
+ 'Downloading season JSON page %d' % page_num, fatal=False)
+ if not data:
+ break
- season = next(
- s for s in series['seasons']
- if int(display_id) == s.get('seasonNumber'))
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ domain = mobj.group('domain')
+ serie = mobj.group('serie')
+ season_id = mobj.group('id')
+ display_id = '%s/%s' % (serie, season_id)
- title = try_get(season, lambda x: x['titles']['title'], compat_str)
+ data = self._download_json(
+ 'https://psapi.nrk.no/%s/catalog/series/%s/seasons/%s'
+ % (domain, serie, season_id), display_id, query={'pageSize': 50})
+ title = try_get(data, lambda x: x['titles']['title'], compat_str) or display_id
return self.playlist_result(
- self._extract_episodes(season), display_id, title)
+ self._entries(data, display_id),
+ display_id, title)
class NRKTVSeriesIE(NRKTVSerieBaseIE):