# encoding: utf-8 from __future__ import unicode_literals import re from .common import InfoExtractor from ..utils import ExtractorError class NDRIE(InfoExtractor): IE_NAME = 'ndr' IE_DESC = 'NDR.de - Mediathek' _VALID_URL = r'https?://www\.ndr\.de/.+?(?P\d+)\.html' _TESTS = [ { 'url': 'http://www.ndr.de/fernsehen/sendungen/markt/markt7959.html', 'md5': 'e7a6079ca39d3568f4996cb858dd6708', 'note': 'Video file', 'info_dict': { 'id': '7959', 'ext': 'mp4', 'title': 'Markt - die ganze Sendung', 'description': 'md5:af9179cf07f67c5c12dc6d9997e05725', 'duration': 2655, }, }, { 'url': 'http://www.ndr.de/903/audio191719.html', 'md5': '41ed601768534dd18a9ae34d84798129', 'note': 'Audio file', 'info_dict': { 'id': '191719', 'ext': 'mp3', 'title': '"Es war schockierend"', 'description': 'md5:ed7ff8364793545021a6355b97e95f10', 'duration': 112, } } ] def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') page = self._download_webpage(url, video_id, 'Downloading page') title = self._og_search_title(page) description = self._og_search_description(page) mobj = re.search( r'
(?P\d+):(?P\d+)
', page) duration = int(mobj.group('minutes')) * 60 + int(mobj.group('seconds')) if mobj else None formats = [] mp3_url = re.search(r'''{src:'(?P