2014-02-06 17:35:26 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-05-17 11:11:40 +00:00
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
|
|
|
int_or_none,
|
2015-09-08 14:58:32 +00:00
|
|
|
qualities,
|
2014-05-17 11:11:40 +00:00
|
|
|
)
|
2014-02-06 17:35:26 +00:00
|
|
|
|
|
|
|
|
2015-09-08 14:58:32 +00:00
|
|
|
preference = qualities(['xs', 's', 'm','l', 'xl'])
|
2015-09-07 10:18:21 +00:00
|
|
|
|
|
|
|
|
2015-05-10 10:22:07 +00:00
|
|
|
class NDRBaseIE(InfoExtractor):
|
2014-02-06 17:35:26 +00:00
|
|
|
|
2015-09-07 19:53:37 +00:00
|
|
|
def extract_video_info(self, playlist, video_id):
|
2015-09-07 10:18:21 +00:00
|
|
|
formats = []
|
2015-09-07 19:53:37 +00:00
|
|
|
streamType = playlist.get('config').get('streamType')
|
|
|
|
if streamType == 'httpVideo':
|
|
|
|
for key, f in playlist.items():
|
2015-09-07 10:18:21 +00:00
|
|
|
if key != 'config':
|
|
|
|
src = f['src']
|
|
|
|
if '.f4m' in src:
|
|
|
|
formats.extend(self._extract_f4m_formats(src, video_id))
|
|
|
|
elif '.m3u8' in src:
|
2015-09-07 19:53:37 +00:00
|
|
|
formats.extend(self._extract_m3u8_formats(src, video_id, fatal=False))
|
2015-09-07 10:18:21 +00:00
|
|
|
else:
|
|
|
|
quality = f.get('quality')
|
|
|
|
formats.append({
|
|
|
|
'url': src,
|
|
|
|
'format_id': quality,
|
2015-09-08 14:58:32 +00:00
|
|
|
'preference': preference(quality),
|
2015-09-07 10:18:21 +00:00
|
|
|
})
|
2015-09-07 19:53:37 +00:00
|
|
|
elif streamType == 'httpAudio':
|
|
|
|
for key, f in playlist.items():
|
2015-09-07 10:18:21 +00:00
|
|
|
if key != 'config':
|
|
|
|
formats.append({
|
|
|
|
'url': f['src'],
|
|
|
|
'format_id': 'mp3',
|
2015-09-07 19:53:37 +00:00
|
|
|
'vcodec': 'none',
|
2015-09-07 10:18:21 +00:00
|
|
|
})
|
|
|
|
else:
|
|
|
|
raise ExtractorError('No media links available for %s' % video_id)
|
2014-02-06 17:35:26 +00:00
|
|
|
|
2015-09-07 10:18:21 +00:00
|
|
|
self._sort_formats(formats)
|
2014-02-06 17:35:26 +00:00
|
|
|
|
2015-09-07 19:53:37 +00:00
|
|
|
config = playlist.get('config')
|
2014-02-06 17:35:26 +00:00
|
|
|
|
2015-09-07 10:18:21 +00:00
|
|
|
title = config['title']
|
|
|
|
duration = int_or_none(config.get('duration'))
|
|
|
|
thumbnails = [{
|
|
|
|
'id': thumbnail.get('quality'),
|
|
|
|
'url': thumbnail.get('src'),
|
2015-09-08 14:58:32 +00:00
|
|
|
'preference': preference(thumbnail.get('quality'))
|
2015-09-07 10:18:21 +00:00
|
|
|
} for thumbnail in config.get('poster').values()]
|
2014-02-06 17:35:26 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2015-09-07 10:18:21 +00:00
|
|
|
'thumbnails': thumbnails,
|
2014-02-06 17:35:26 +00:00
|
|
|
'duration': duration,
|
|
|
|
'formats': formats,
|
2014-11-23 19:41:03 +00:00
|
|
|
}
|
2015-05-10 10:22:07 +00:00
|
|
|
|
2015-09-07 19:53:37 +00:00
|
|
|
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'<iframe[^>]+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)
|
|
|
|
|
2015-05-10 10:22:07 +00:00
|
|
|
|
|
|
|
class NDRIE(NDRBaseIE):
|
|
|
|
IE_NAME = 'ndr'
|
|
|
|
IE_DESC = 'NDR.de - Mediathek'
|
2015-09-07 10:18:21 +00:00
|
|
|
_VALID_URL = r'https?://www\.ndr\.de/.+?,(?P<id>\w+)\.html'
|
2015-05-10 10:22:07 +00:00
|
|
|
|
|
|
|
_TESTS = [
|
|
|
|
{
|
|
|
|
'url': 'http://www.ndr.de/fernsehen/sendungen/nordmagazin/Kartoffeltage-in-der-Lewitz,nordmagazin25866.html',
|
|
|
|
'md5': '5bc5f5b92c82c0f8b26cddca34f8bb2c',
|
|
|
|
'note': 'Video file',
|
|
|
|
'info_dict': {
|
2015-09-07 10:18:21 +00:00
|
|
|
'id': 'nordmagazin25866',
|
2015-05-10 10:22:07 +00:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Kartoffeltage in der Lewitz',
|
|
|
|
'duration': 166,
|
2015-05-10 10:30:26 +00:00
|
|
|
},
|
|
|
|
'skip': '404 Not found',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'url': 'http://www.ndr.de/fernsehen/Party-Poette-und-Parade,hafengeburtstag988.html',
|
|
|
|
'md5': 'dadc003c55ae12a5d2f6bd436cd73f59',
|
|
|
|
'info_dict': {
|
2015-09-07 10:18:21 +00:00
|
|
|
'id': 'hafengeburtstag988',
|
2015-05-10 10:30:26 +00:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Party, Pötte und Parade',
|
|
|
|
'duration': 3498,
|
|
|
|
},
|
2015-05-10 10:22:07 +00:00
|
|
|
},
|
|
|
|
{
|
2015-09-07 10:18:21 +00:00
|
|
|
'url': 'http://www.ndr.de/info/La-Valette-entgeht-der-Hinrichtung,audio51535.html',
|
2015-05-10 10:22:07 +00:00
|
|
|
'md5': 'bb3cd38e24fbcc866d13b50ca59307b8',
|
|
|
|
'note': 'Audio file',
|
|
|
|
'info_dict': {
|
2015-09-07 10:18:21 +00:00
|
|
|
'id': 'audio51535',
|
2015-05-10 10:22:07 +00:00
|
|
|
'ext': 'mp3',
|
|
|
|
'title': 'La Valette entgeht der Hinrichtung',
|
|
|
|
'duration': 884,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
class NJoyIE(NDRBaseIE):
|
|
|
|
IE_NAME = 'N-JOY'
|
2015-09-07 10:18:21 +00:00
|
|
|
_VALID_URL = r'https?://www\.n-joy\.de/.+?,(?P<id>\w+)\.html'
|
2015-05-10 10:22:07 +00:00
|
|
|
|
|
|
|
_TEST = {
|
|
|
|
'url': 'http://www.n-joy.de/entertainment/comedy/comedy_contest/Benaissa-beim-NDR-Comedy-Contest,comedycontest2480.html',
|
|
|
|
'md5': 'cb63be60cd6f9dd75218803146d8dc67',
|
|
|
|
'info_dict': {
|
2015-09-07 19:53:37 +00:00
|
|
|
'id': 'comedycontest2480',
|
2015-05-10 10:22:07 +00:00
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Benaissa beim NDR Comedy Contest',
|
|
|
|
'duration': 654,
|
|
|
|
}
|
|
|
|
}
|
2015-09-07 19:53:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NDREmbedBaseIE(NDRBaseIE):
|
|
|
|
|
|
|
|
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:
|
|
|
|
raise ExtractorError('No media links available for %s' % video_id)
|
|
|
|
return self.extract_video_info(json_data['playlist'], video_id)
|
|
|
|
|
|
|
|
|
|
|
|
class NDREmbedIE(NDREmbedBaseIE):
|
|
|
|
IE_NAME = 'ndr:embed'
|
2015-09-08 14:37:20 +00:00
|
|
|
_VALID_URL = r'https?://www\.ndr\.de/(?:[^/]+/)+(?P<id>[a-z0-9]+)-(?:player|externalPlayer)\.html'
|
2015-09-07 19:53:37 +00:00
|
|
|
|
|
|
|
_TEST = {
|
|
|
|
'url': 'http://www.ndr.de/fernsehen/sendungen/ndr_aktuell/ndraktuell28488-player.html',
|
|
|
|
'md5': 'cb63be60cd6f9dd75218803146d8dc67',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'ndraktuell28488',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Norddeutschland begrüßt Flüchtlinge',
|
|
|
|
'duration': 132,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class NJoyEmbedIE(NDREmbedBaseIE):
|
|
|
|
IE_NAME = 'N-JOY:embed'
|
2015-09-08 14:37:20 +00:00
|
|
|
_VALID_URL = r'https?://www\.n-joy\.de/(?:[^/]+/)+(?P<id>[a-z0-9]+)-(?:player|externalPlayer)\.html'
|
2015-09-07 19:53:37 +00:00
|
|
|
|
|
|
|
_TEST = {
|
|
|
|
'url': 'http://www.n-joy.de/entertainment/film/portraet374-player_image-832d9b79-fa8a-4026-92e2-e0fd99deb2f9_theme-n-joy.html',
|
|
|
|
'md5': 'cb63be60cd6f9dd75218803146d8dc67',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'portraet374',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Viviane Andereggen - "Schuld um Schuld"',
|
|
|
|
'duration': 129,
|
|
|
|
}
|
|
|
|
}
|