aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/svt.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-04-05 00:05:09 +0700
committerSergey M․ <dstftw@gmail.com>2018-04-05 00:29:08 +0700
commitdf146eb2827a97da507833c08169d84d708dfb02 (patch)
treea19022ddb2e88e3d63f1965b4097c2b115a594a6 /youtube_dl/extractor/svt.py
parentb71bb3ba8be711abab4c05527d28c4b5e4552401 (diff)
downloadyoutube-dl-df146eb2827a97da507833c08169d84d708dfb02.tar.xz
[svtplay:series] Add support for season URLs
Diffstat (limited to 'youtube_dl/extractor/svt.py')
-rw-r--r--youtube_dl/extractor/svt.py43
1 files changed, 38 insertions, 5 deletions
diff --git a/youtube_dl/extractor/svt.py b/youtube_dl/extractor/svt.py
index 45b4b8bf7..d1d601b1f 100644
--- a/youtube_dl/extractor/svt.py
+++ b/youtube_dl/extractor/svt.py
@@ -4,6 +4,10 @@ from __future__ import unicode_literals
import re
from .common import InfoExtractor
+from ..compat import (
+ compat_parse_qs,
+ compat_urllib_parse_urlparse,
+)
from ..utils import (
determine_ext,
dict_get,
@@ -203,6 +207,14 @@ class SVTSeriesIE(InfoExtractor):
'description': 'md5:505d491a58f4fcf6eb418ecab947e69e',
},
'playlist_mincount': 318,
+ }, {
+ 'url': 'https://www.svtplay.se/rederiet?tab=sasong2',
+ 'info_dict': {
+ 'id': 'rederiet-sasong2',
+ 'title': 'Rederiet - Säsong 2',
+ 'description': 'md5:505d491a58f4fcf6eb418ecab947e69e',
+ },
+ 'playlist_count': 12,
}]
@classmethod
@@ -210,19 +222,33 @@ class SVTSeriesIE(InfoExtractor):
return False if SVTIE.suitable(url) or SVTPlayIE.suitable(url) else super(SVTSeriesIE, cls).suitable(url)
def _real_extract(self, url):
- video_id = self._match_id(url)
+ series_id = self._match_id(url)
+
+ qs = compat_parse_qs(compat_urllib_parse_urlparse(url).query)
+ season_slug = qs.get('tab', [None])[0]
+
+ if season_slug:
+ series_id += '-%s' % season_slug
webpage = self._download_webpage(
- url, video_id, 'Downloading serie page')
+ url, series_id, 'Downloading series page')
root = self._parse_json(
self._search_regex(
r'root\[\s*(["\'])_*svtplay\1\s*\]\s*=\s*(?P<json>{.+?})\s*;\s*\n',
webpage, 'content', group='json'),
- video_id)
+ series_id)
+
+ season_name = None
entries = []
for season in root['relatedVideoContent']['relatedVideosAccordion']:
+ if not isinstance(season, dict):
+ continue
+ if season_slug:
+ if season.get('slug') != season_slug:
+ continue
+ season_name = season.get('name')
videos = season.get('videos')
if not isinstance(videos, list):
continue
@@ -241,6 +267,13 @@ class SVTSeriesIE(InfoExtractor):
if not isinstance(metadata, dict):
metadata = {}
+ title = metadata.get('title')
+ season_name = season_name or season_slug
+
+ if title and season_name:
+ title = '%s - %s' % (title, season_name)
+ elif season_slug:
+ title = season_slug
+
return self.playlist_result(
- entries, video_id, metadata.get('title'),
- metadata.get('description'))
+ entries, series_id, title, metadata.get('description'))