yt-dlc/youtube_dlc/extractor/bpb.py

63 lines
2.2 KiB
Python
Raw Normal View History

2014-11-24 19:02:00 +00:00
# coding: utf-8
from __future__ import unicode_literals
2016-01-31 21:00:09 +00:00
import re
2014-11-24 19:02:00 +00:00
from .common import InfoExtractor
2016-01-31 21:00:09 +00:00
from ..utils import (
js_to_json,
determine_ext,
)
2014-11-24 19:02:00 +00:00
2014-11-24 21:47:23 +00:00
2014-11-24 19:02:00 +00:00
class BpbIE(InfoExtractor):
2014-11-24 21:47:23 +00:00
IE_DESC = 'Bundeszentrale für politische Bildung'
2016-09-08 11:29:05 +00:00
_VALID_URL = r'https?://(?:www\.)?bpb\.de/mediathek/(?P<id>[0-9]+)/'
2014-11-24 21:47:23 +00:00
_TEST = {
'url': 'http://www.bpb.de/mediathek/297/joachim-gauck-zu-1989-und-die-erinnerung-an-die-ddr',
2016-01-31 21:00:09 +00:00
# md5 fails in Python 2.6 due to buggy server response and wrong handling of urllib2
'md5': 'c4f84c8a8044ca9ff68bb8441d300b3f',
2014-11-24 21:47:23 +00:00
'info_dict': {
'id': '297',
'ext': 'mp4',
'title': 'Joachim Gauck zu 1989 und die Erinnerung an die DDR',
'description': 'Joachim Gauck, erster Beauftragter für die Stasi-Unterlagen, spricht auf dem Geschichtsforum über die friedliche Revolution 1989 und eine "gewisse Traurigkeit" im Umgang mit der DDR-Vergangenheit.'
}
}
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
title = self._html_search_regex(
r'<h2 class="white">(.*?)</h2>', webpage, 'title')
2016-01-31 21:00:09 +00:00
video_info_dicts = re.findall(
2017-09-03 09:38:43 +00:00
r"({\s*src\s*:\s*'https?://film\.bpb\.de/[^}]+})", webpage)
2016-01-31 21:00:09 +00:00
formats = []
for video_info in video_info_dicts:
2017-09-03 09:38:43 +00:00
video_info = self._parse_json(
video_info, video_id, transform_source=js_to_json, fatal=False)
if not video_info:
continue
video_url = video_info.get('src')
if not video_url:
continue
quality = 'high' if '_high' in video_url else 'low'
2016-01-31 21:00:09 +00:00
formats.append({
'url': video_url,
'preference': 10 if quality == 'high' else 0,
'format_note': quality,
'format_id': '%s-%s' % (quality, determine_ext(video_url)),
})
self._sort_formats(formats)
2014-11-24 21:47:23 +00:00
return {
'id': video_id,
2016-01-31 21:00:09 +00:00
'formats': formats,
2014-11-24 21:47:23 +00:00
'title': title,
'description': self._og_search_description(webpage),
}