youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit e6a25fea23c4ee1db2461e77b457d01dc922a0a6
parent b7df8f90a7d749ce609e7ff344464db73329117a
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 12 May 2019 23:23:29 +0700

[svtplay] Update API URL (closes #21075)

Diffstat:
Myoutube_dl/extractor/svt.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/svt.py b/youtube_dl/extractor/svt.py @@ -185,7 +185,7 @@ class SVTPlayIE(SVTPlayBaseIE): def _extract_by_video_id(self, video_id, webpage=None): data = self._download_json( - 'https://api.svt.se/video/%s' % video_id, + 'https://api.svt.se/videoplayer-api/video/%s' % video_id, video_id, headers=self.geo_verification_headers()) info_dict = self._extract_video(data, video_id) if not info_dict.get('title'):