X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fndr.py;h=87f3edbbeb9710482b4ae5563fd153a88bcf31b5;hb=376e1ad081abbeb234419c08be121fe81eb9b51d;hp=c31ff8160851f824042804a06d905f85d3217416;hpb=b703ab4d7f39ea7e9a88c971d55fdcc1b468ba26;p=youtube-dl.git diff --git a/youtube_dl/extractor/ndr.py b/youtube_dl/extractor/ndr.py index c31ff8160..87f3edbbe 100644 --- a/youtube_dl/extractor/ndr.py +++ b/youtube_dl/extractor/ndr.py @@ -1,8 +1,6 @@ # encoding: utf-8 from __future__ import unicode_literals -import re - from .common import InfoExtractor from ..utils import ( ExtractorError, @@ -11,10 +9,84 @@ from ..utils import ( ) -class NDRIE(InfoExtractor): +preference = qualities(['xs', 's', 'm','l', 'xl']) + + +class NDRBaseIE(InfoExtractor): + + def extract_video_info(self, playlist, video_id): + formats = [] + streamType = playlist.get('config').get('streamType') + if streamType == 'httpVideo': + for key, f in playlist.items(): + if key != 'config': + src = f['src'] + if '.f4m' in src: + formats.extend(self._extract_f4m_formats(src, video_id)) + elif '.m3u8' in src: + formats.extend(self._extract_m3u8_formats(src, video_id, fatal=False)) + else: + quality = f.get('quality') + formats.append({ + 'url': src, + 'format_id': quality, + 'preference': preference(quality), + }) + elif streamType == 'httpAudio': + for key, f in playlist.items(): + if key != 'config': + formats.append({ + 'url': f['src'], + 'format_id': 'mp3', + 'vcodec': 'none', + }) + else: + raise ExtractorError('No media links available for %s' % video_id) + + self._sort_formats(formats) + + config = playlist.get('config') + + title = config['title'] + duration = int_or_none(config.get('duration')) + thumbnails = [{ + 'id': thumbnail.get('quality'), + 'url': thumbnail.get('src'), + 'preference': preference(thumbnail.get('quality')) + } for thumbnail in config.get('poster').values()] + + return { + 'id': video_id, + 'title': title, + 'thumbnails': thumbnails, + 'duration': duration, + 'formats': formats, + } + + def _real_extract(self, url): + video_id = self._match_id(url) + + json_data = self._download_json('http://www.ndr.de/%s-ppjson.json' % video_id, video_id, fatal=False) + + if not json_data: + webpage = self._download_webpage(url, video_id) + embed_url = self._html_search_regex(r']+id="pp_\w+"[^>]+src="(/.*)"', webpage, 'embed url', None, False) + if not embed_url: + embed_url = self._html_search_meta('embedURL', webpage, fatal=False) + if embed_url: + if embed_url.startswith('/'): + return self.url_result('http://www.ndr.de%s' % embed_url, 'NDREmbed') + else: + return self.url_result(embed_url, 'NDREmbed') + raise ExtractorError('No media links available for %s' % video_id) + + return self.extract_video_info(json_data['playlist'], video_id) + + +class NDRIE(NDRBaseIE): IE_NAME = 'ndr' IE_DESC = 'NDR.de - Mediathek' - _VALID_URL = r'https?://www\.ndr\.de/.+?(?P\d+)\.html' + _VALID_URL = r'https?://www\.ndr\.de/.+?,(?P\w+)\.html' _TESTS = [ { @@ -22,73 +94,90 @@ class NDRIE(InfoExtractor): 'md5': '5bc5f5b92c82c0f8b26cddca34f8bb2c', 'note': 'Video file', 'info_dict': { - 'id': '25866', + 'id': 'nordmagazin25866', 'ext': 'mp4', 'title': 'Kartoffeltage in der Lewitz', - 'description': 'md5:48c4c04dde604c8a9971b3d4e3b9eaa8', 'duration': 166, - } + }, + 'skip': '404 Not found', + }, + { + 'url': 'http://www.ndr.de/fernsehen/Party-Poette-und-Parade,hafengeburtstag988.html', + 'md5': 'dadc003c55ae12a5d2f6bd436cd73f59', + 'info_dict': { + 'id': 'hafengeburtstag988', + 'ext': 'mp4', + 'title': 'Party, Pötte und Parade', + 'duration': 3498, + }, }, { - 'url': 'http://www.ndr.de/info/audio51535.html', + 'url': 'http://www.ndr.de/info/La-Valette-entgeht-der-Hinrichtung,audio51535.html', 'md5': 'bb3cd38e24fbcc866d13b50ca59307b8', 'note': 'Audio file', 'info_dict': { - 'id': '51535', + 'id': 'audio51535', 'ext': 'mp3', 'title': 'La Valette entgeht der Hinrichtung', - 'description': 'md5:22f9541913a40fe50091d5cdd7c9f536', 'duration': 884, } } ] - 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') +class NJoyIE(NDRBaseIE): + IE_NAME = 'N-JOY' + _VALID_URL = r'https?://www\.n-joy\.de/.+?,(?P\w+)\.html' - title = self._og_search_title(page).strip() - description = self._og_search_description(page) - if description: - description = description.strip() + _TEST = { + 'url': 'http://www.n-joy.de/entertainment/comedy/comedy_contest/Benaissa-beim-NDR-Comedy-Contest,comedycontest2480.html', + 'md5': 'cb63be60cd6f9dd75218803146d8dc67', + 'info_dict': { + 'id': 'comedycontest2480', + 'ext': 'mp4', + 'title': 'Benaissa beim NDR Comedy Contest', + 'duration': 654, + } + } - duration = int_or_none(self._html_search_regex(r'duration: (\d+),\n', page, 'duration', fatal=False)) - formats = [] +class NDREmbedBaseIE(NDRBaseIE): - mp3_url = re.search(r'''\{src:'(?P