[bpb] Fix extraction (closes #14043)
authorTimendum <timedum@gmail.com>
Thu, 31 Aug 2017 10:56:37 +0000 (12:56 +0200)
committerSergey M․ <dstftw@gmail.com>
Sun, 3 Sep 2017 09:39:12 +0000 (16:39 +0700)
youtube_dl/extractor/bpb.py

index 9661ade4f312e5c5e1068a42d3a693dd936fd1d6..14bc0f77db7245e9159c4485e9fcff2aee0d38f1 100644 (file)
@@ -33,13 +33,13 @@ class BpbIE(InfoExtractor):
         title = self._html_search_regex(
             r'<h2 class="white">(.*?)</h2>', webpage, 'title')
         video_info_dicts = re.findall(
-            r"({\s*src:\s*'http://film\.bpb\.de/[^}]+})", webpage)
+            r"({\s*src\s*:\s*'https://film\.bpb\.de/[^}]+})", webpage)
 
         formats = []
         for video_info in video_info_dicts:
             video_info = self._parse_json(video_info, video_id, transform_source=js_to_json)
-            quality = video_info['quality']
             video_url = video_info['src']
+            quality = 'high' if re.search(r'_high\.', video_url) else 'low'
             formats.append({
                 'url': video_url,
                 'preference': 10 if quality == 'high' else 0,