diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-07-29 15:25:32 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-07-29 15:25:32 +0700 |
commit | 2a7a82321135bc59364c91caddde4211f378785b (patch) | |
tree | 3c04f26554d3a48a19c673164dd3cfbbb4fc782d /youtube_dl | |
parent | 95908ce45382a72be26e918f8db1809b0ce81190 (diff) |
[svtplay] Update API URL (closes #13767)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/svt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/svt.py b/youtube_dl/extractor/svt.py index 1b5afb73e..38a505f9c 100644 --- a/youtube_dl/extractor/svt.py +++ b/youtube_dl/extractor/svt.py @@ -181,7 +181,7 @@ class SVTPlayIE(SVTBaseIE): if video_id: data = self._download_json( - 'http://www.svt.se/videoplayer-api/video/%s' % video_id, video_id) + 'https://api.svt.se/videoplayer-api/video/%s' % video_id, video_id) info_dict = self._extract_video(data, video_id) if not info_dict.get('title'): info_dict['title'] = re.sub( |