From d915642fae1e677548a685ac2030ce719d37c184 Mon Sep 17 00:00:00 2001 From: Alexander Seiler Date: Thu, 29 Nov 2018 05:13:55 +0100 Subject: [PATCH 1/2] [azmedien] Fix information extractor (closes #18334) --- youtube_dl/extractor/azmedien.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/youtube_dl/extractor/azmedien.py b/youtube_dl/extractor/azmedien.py index a57a5f114..d3e15371f 100644 --- a/youtube_dl/extractor/azmedien.py +++ b/youtube_dl/extractor/azmedien.py @@ -36,7 +36,6 @@ class AZMedienIE(InfoExtractor): 'id': '1_anruz3wy', 'ext': 'mp4', 'title': 'Bundesrats-Vakanzen / EU-Rahmenabkommen', - 'description': 'md5:dd9f96751ec9c35e409a698a328402f3', 'uploader_id': 'TVOnline', 'upload_date': '20180930', 'timestamp': 1538328802, @@ -57,10 +56,7 @@ class AZMedienIE(InfoExtractor): entry_id = mobj.group('kaltura_id') if not entry_id: - webpage = self._download_webpage(url, video_id) - api_path = self._search_regex( - r'["\']apiPath["\']\s*:\s*["\']([^"^\']+)["\']', - webpage, 'api path') + api_path = '/api/pub/gql/%s' % mobj.group('host').split('.')[0] api_url = 'https://www.%s%s' % (mobj.group('host'), api_path) payload = { 'query': '''query VideoContext($articleId: ID!) { From 4de5e5dcaca93a92b11b9f0bc63b2cd63ea57d48 Mon Sep 17 00:00:00 2001 From: Sergey M Date: Fri, 30 Nov 2018 00:11:59 +0700 Subject: [PATCH 2/2] Update azmedien.py --- youtube_dl/extractor/azmedien.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/azmedien.py b/youtube_dl/extractor/azmedien.py index d3e15371f..fcbdc71b9 100644 --- a/youtube_dl/extractor/azmedien.py +++ b/youtube_dl/extractor/azmedien.py @@ -52,12 +52,12 @@ class AZMedienIE(InfoExtractor): def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) + host = mobj.group('host') video_id = mobj.group('id') entry_id = mobj.group('kaltura_id') if not entry_id: - api_path = '/api/pub/gql/%s' % mobj.group('host').split('.')[0] - api_url = 'https://www.%s%s' % (mobj.group('host'), api_path) + api_url = 'https://www.%s/api/pub/gql/%s' % (host, host.split('.')[0]) payload = { 'query': '''query VideoContext($articleId: ID!) { article: node(id: $articleId) {