mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 19:17:06 -05:00 
			
		
		
		
	[ndr] Rework and cover with tests
This commit is contained in:
		@@ -367,6 +367,7 @@ from .nbc import (
 | 
			
		||||
from .ndr import (
 | 
			
		||||
    NDRIE,
 | 
			
		||||
    NJoyIE,
 | 
			
		||||
    NDREmbedBaseIE,
 | 
			
		||||
    NDREmbedIE,
 | 
			
		||||
    NJoyEmbedIE,
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
@@ -1,183 +1,380 @@
 | 
			
		||||
# encoding: utf-8
 | 
			
		||||
# coding: utf-8
 | 
			
		||||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
from ..utils import (
 | 
			
		||||
    ExtractorError,
 | 
			
		||||
    determine_ext,
 | 
			
		||||
    int_or_none,
 | 
			
		||||
    parse_iso8601,
 | 
			
		||||
    qualities,
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
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'<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)
 | 
			
		||||
        display_id = self._match_id(url)
 | 
			
		||||
        webpage = self._download_webpage(url, display_id)
 | 
			
		||||
        return self._extract_embed(webpage, display_id)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class NDRIE(NDRBaseIE):
 | 
			
		||||
    IE_NAME = 'ndr'
 | 
			
		||||
    IE_DESC = 'NDR.de - Mediathek'
 | 
			
		||||
    _VALID_URL = r'https?://www\.ndr\.de/.+?,(?P<id>\w+)\.html'
 | 
			
		||||
    IE_DESC = 'NDR.de - Norddeutscher Rundfunk'
 | 
			
		||||
    _VALID_URL = r'https?://www\.ndr\.de/(?:[^/]+/)+(?P<id>[^/?#]+),[\da-z]+\.html'
 | 
			
		||||
    _TESTS = [{
 | 
			
		||||
        # httpVideo, same content id
 | 
			
		||||
        'url': 'http://www.ndr.de/fernsehen/Party-Poette-und-Parade,hafengeburtstag988.html',
 | 
			
		||||
        'md5': '6515bc255dc5c5f8c85bbc38e035a659',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'hafengeburtstag988',
 | 
			
		||||
            'display_id': 'Party-Poette-und-Parade',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Party, Pötte und Parade',
 | 
			
		||||
            'description': 'md5:ad14f9d2f91d3040b6930c697e5f6b4c',
 | 
			
		||||
            'uploader': 'ndrtv',
 | 
			
		||||
            'timestamp': 1431108900,
 | 
			
		||||
            'upload_date': '20150510',
 | 
			
		||||
            'duration': 3498,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        # httpVideo, different content id
 | 
			
		||||
        'url': 'http://www.ndr.de/sport/fussball/40-Osnabrueck-spielt-sich-in-einen-Rausch,osna270.html',
 | 
			
		||||
        'md5': '1043ff203eab307f0c51702ec49e9a71',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'osna272',
 | 
			
		||||
            'display_id': '40-Osnabrueck-spielt-sich-in-einen-Rausch',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Osnabrück - Wehen Wiesbaden: Die Highlights',
 | 
			
		||||
            'description': 'md5:32e9b800b3d2d4008103752682d5dc01',
 | 
			
		||||
            'uploader': 'ndrtv',
 | 
			
		||||
            'timestamp': 1442059200,
 | 
			
		||||
            'upload_date': '20150912',
 | 
			
		||||
            'duration': 510,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        # httpAudio, same content id
 | 
			
		||||
        'url': 'http://www.ndr.de/info/La-Valette-entgeht-der-Hinrichtung,audio51535.html',
 | 
			
		||||
        'md5': 'bb3cd38e24fbcc866d13b50ca59307b8',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'audio51535',
 | 
			
		||||
            'display_id': 'La-Valette-entgeht-der-Hinrichtung',
 | 
			
		||||
            'ext': 'mp3',
 | 
			
		||||
            'title': 'La Valette entgeht der Hinrichtung',
 | 
			
		||||
            'description': 'md5:22f9541913a40fe50091d5cdd7c9f536',
 | 
			
		||||
            'uploader': 'ndrinfo',
 | 
			
		||||
            'timestamp': 1290626100,
 | 
			
		||||
            'upload_date': '20140729',
 | 
			
		||||
            'duration': 884,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }]
 | 
			
		||||
 | 
			
		||||
    _TESTS = [
 | 
			
		||||
        {
 | 
			
		||||
            'url': 'http://www.ndr.de/fernsehen/sendungen/nordmagazin/Kartoffeltage-in-der-Lewitz,nordmagazin25866.html',
 | 
			
		||||
            'md5': '5bc5f5b92c82c0f8b26cddca34f8bb2c',
 | 
			
		||||
            'note': 'Video file',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': 'nordmagazin25866',
 | 
			
		||||
                'ext': 'mp4',
 | 
			
		||||
                'title': 'Kartoffeltage in der Lewitz',
 | 
			
		||||
                '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/La-Valette-entgeht-der-Hinrichtung,audio51535.html',
 | 
			
		||||
            'md5': 'bb3cd38e24fbcc866d13b50ca59307b8',
 | 
			
		||||
            'note': 'Audio file',
 | 
			
		||||
            'info_dict': {
 | 
			
		||||
                'id': 'audio51535',
 | 
			
		||||
                'ext': 'mp3',
 | 
			
		||||
                'title': 'La Valette entgeht der Hinrichtung',
 | 
			
		||||
                'duration': 884,
 | 
			
		||||
            }
 | 
			
		||||
    def _extract_embed(self, webpage, display_id):
 | 
			
		||||
        embed_url = self._html_search_meta(
 | 
			
		||||
            'embedURL', webpage, 'embed URL', fatal=True)
 | 
			
		||||
        description = self._search_regex(
 | 
			
		||||
            r'<p[^>]+itemprop="description">([^<]+)</p>',
 | 
			
		||||
            webpage, 'description', fatal=False)
 | 
			
		||||
        timestamp = parse_iso8601(
 | 
			
		||||
            self._search_regex(
 | 
			
		||||
                r'<span itemprop="datePublished" content="([^"]+)">',
 | 
			
		||||
                webpage, 'upload date', fatal=False))
 | 
			
		||||
        return {
 | 
			
		||||
            '_type': 'url_transparent',
 | 
			
		||||
            'url': embed_url,
 | 
			
		||||
            'display_id': display_id,
 | 
			
		||||
            'description': description,
 | 
			
		||||
            'timestamp': timestamp,
 | 
			
		||||
        }
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class NJoyIE(NDRBaseIE):
 | 
			
		||||
    IE_NAME = 'N-JOY'
 | 
			
		||||
    _VALID_URL = r'https?://www\.n-joy\.de/.+?,(?P<id>\w+)\.html'
 | 
			
		||||
 | 
			
		||||
    _TEST = {
 | 
			
		||||
    IE_NAME = 'njoy'
 | 
			
		||||
    IE_DESC = 'N-JOY'
 | 
			
		||||
    _VALID_URL = r'https?://www\.n-joy\.de/(?:[^/]+/)+(?P<id>[^/?#]+),[\da-z]+\.html'
 | 
			
		||||
    _TESTS = [{
 | 
			
		||||
        # httpVideo, same content id
 | 
			
		||||
        'url': 'http://www.n-joy.de/entertainment/comedy/comedy_contest/Benaissa-beim-NDR-Comedy-Contest,comedycontest2480.html',
 | 
			
		||||
        'md5': 'cb63be60cd6f9dd75218803146d8dc67',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'comedycontest2480',
 | 
			
		||||
            'display_id': 'Benaissa-beim-NDR-Comedy-Contest',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Benaissa beim NDR Comedy Contest',
 | 
			
		||||
            'description': 'md5:f057a6c4e1c728b10d33b5ffd36ddc39',
 | 
			
		||||
            'uploader': 'ndrtv',
 | 
			
		||||
            'upload_date': '20141129',
 | 
			
		||||
            'duration': 654,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        # httpVideo, different content id
 | 
			
		||||
        'url': 'http://www.n-joy.de/musik/Das-frueheste-DJ-Set-des-Nordens-live-mit-Felix-Jaehn-,felixjaehn168.html',
 | 
			
		||||
        'md5': '417660fffa90e6df2fda19f1b40a64d8',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'dockville882',
 | 
			
		||||
            'display_id': 'Das-frueheste-DJ-Set-des-Nordens-live-mit-Felix-Jaehn-',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': '"Ich hab noch nie" mit Felix Jaehn',
 | 
			
		||||
            'description': 'md5:85dd312d53be1b99e1f998a16452a2f3',
 | 
			
		||||
            'uploader': 'njoy',
 | 
			
		||||
            'upload_date': '20150822',
 | 
			
		||||
            'duration': 211,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }]
 | 
			
		||||
 | 
			
		||||
    def _extract_embed(self, webpage, display_id):
 | 
			
		||||
        video_id = self._search_regex(
 | 
			
		||||
            r'<iframe[^>]+id="pp_([\da-z]+)"', webpage, 'embed id')
 | 
			
		||||
        description = self._search_regex(
 | 
			
		||||
            r'<div[^>]+class="subline"[^>]*>[^<]+</div>\s*<p>([^<]+)</p>',
 | 
			
		||||
            webpage, 'description', fatal=False)
 | 
			
		||||
        return {
 | 
			
		||||
            '_type': 'url_transparent',
 | 
			
		||||
            'ie_key': 'NDREmbedBase',
 | 
			
		||||
            'url': 'ndr:%s' % video_id,
 | 
			
		||||
            'display_id': display_id,
 | 
			
		||||
            'description': description,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class NDREmbedBaseIE(NDRBaseIE):
 | 
			
		||||
class NDREmbedBaseIE(InfoExtractor):
 | 
			
		||||
    IE_NAME = 'ndr:embed:base'
 | 
			
		||||
    _VALID_URL = r'(?:ndr:(?P<id_s>[\da-z]+)|https?://www\.ndr\.de/(?P<id>[\da-z]+)-ppjson\.json)'
 | 
			
		||||
    _TESTS = [{
 | 
			
		||||
        'url': 'ndr:soundcheck3366',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/soundcheck3366-ppjson.json',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }]
 | 
			
		||||
 | 
			
		||||
    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)
 | 
			
		||||
        mobj = re.match(self._VALID_URL, url)
 | 
			
		||||
        video_id = mobj.group('id') or mobj.group('id_s')
 | 
			
		||||
 | 
			
		||||
        ppjson = self._download_json(
 | 
			
		||||
            'http://www.ndr.de/%s-ppjson.json' % video_id, video_id)
 | 
			
		||||
 | 
			
		||||
        playlist = ppjson['playlist']
 | 
			
		||||
 | 
			
		||||
        formats = []
 | 
			
		||||
        quality_key = qualities(('xs', 's', 'm', 'l', 'xl'))
 | 
			
		||||
 | 
			
		||||
        for format_id, f in playlist.items():
 | 
			
		||||
            src = f.get('src')
 | 
			
		||||
            if not src:
 | 
			
		||||
                continue
 | 
			
		||||
            ext = determine_ext(src, None)
 | 
			
		||||
            if ext == 'f4m':
 | 
			
		||||
                formats.extend(self._extract_f4m_formats(
 | 
			
		||||
                    src + '?hdcore=3.7.0&plugin=aasp-3.7.0.39.44', video_id, f4m_id='hds'))
 | 
			
		||||
            elif ext == 'm3u8':
 | 
			
		||||
                formats.extend(self._extract_m3u8_formats(
 | 
			
		||||
                    src, video_id, m3u8_id='hls', entry_protocol='m3u8_native'))
 | 
			
		||||
            else:
 | 
			
		||||
                quality = f.get('quality')
 | 
			
		||||
                ff = {
 | 
			
		||||
                    'url': src,
 | 
			
		||||
                    'format_id': quality or format_id,
 | 
			
		||||
                    'quality': quality_key(quality),
 | 
			
		||||
                }
 | 
			
		||||
                type_ = f.get('type')
 | 
			
		||||
                if type_ and type_.split('/')[0] == 'audio':
 | 
			
		||||
                    ff['vcodec'] = 'none'
 | 
			
		||||
                    ff['ext'] = ext or 'mp3'
 | 
			
		||||
                formats.append(ff)
 | 
			
		||||
        self._sort_formats(formats)
 | 
			
		||||
 | 
			
		||||
        config = playlist['config']
 | 
			
		||||
 | 
			
		||||
        live = playlist.get('config', {}).get('streamType') in ['httpVideoLive', 'httpAudioLive']
 | 
			
		||||
        title = config['title']
 | 
			
		||||
        if live:
 | 
			
		||||
            title = self._live_title(title)
 | 
			
		||||
        uploader = ppjson.get('config', {}).get('branding')
 | 
			
		||||
        upload_date = ppjson.get('config', {}).get('publicationDate')
 | 
			
		||||
        duration = int_or_none(config.get('duration'))
 | 
			
		||||
 | 
			
		||||
        thumbnails = [{
 | 
			
		||||
            'id': thumbnail.get('quality') or thumbnail_id,
 | 
			
		||||
            'url': thumbnail['src'],
 | 
			
		||||
            'preference': quality_key(thumbnail.get('quality')),
 | 
			
		||||
        } for thumbnail_id, thumbnail in config.get('poster', {}).items() if thumbnail.get('src')]
 | 
			
		||||
 | 
			
		||||
        return {
 | 
			
		||||
            'id': video_id,
 | 
			
		||||
            'title': title,
 | 
			
		||||
            'is_live': live,
 | 
			
		||||
            'uploader': uploader if uploader != '-' else None,
 | 
			
		||||
            'upload_date': upload_date[0:8] if upload_date else None,
 | 
			
		||||
            'duration': duration,
 | 
			
		||||
            'thumbnails': thumbnails,
 | 
			
		||||
            'formats': formats,
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class NDREmbedIE(NDREmbedBaseIE):
 | 
			
		||||
    IE_NAME = 'ndr:embed'
 | 
			
		||||
    _VALID_URL = r'https?://www\.ndr\.de/(?:[^/]+/)+(?P<id>[a-z0-9]+)-(?:player|externalPlayer)\.html'
 | 
			
		||||
 | 
			
		||||
    _TEST = {
 | 
			
		||||
    _VALID_URL = r'https?://www\.ndr\.de/(?:[^/]+/)+(?P<id>[\da-z]+)-(?:player|externalPlayer)\.html'
 | 
			
		||||
    _TESTS = [{
 | 
			
		||||
        'url': 'http://www.ndr.de/fernsehen/sendungen/ndr_aktuell/ndraktuell28488-player.html',
 | 
			
		||||
        'md5': 'cb63be60cd6f9dd75218803146d8dc67',
 | 
			
		||||
        'md5': '8b9306142fe65bbdefb5ce24edb6b0a9',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'ndraktuell28488',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Norddeutschland begrüßt Flüchtlinge',
 | 
			
		||||
            'is_live': False,
 | 
			
		||||
            'uploader': 'ndrtv',
 | 
			
		||||
            'upload_date': '20150907',
 | 
			
		||||
            'duration': 132,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/ndr2/events/soundcheck/soundcheck3366-player.html',
 | 
			
		||||
        'md5': '002085c44bae38802d94ae5802a36e78',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'soundcheck3366',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Ella Henderson braucht Vergleiche nicht zu scheuen',
 | 
			
		||||
            'is_live': False,
 | 
			
		||||
            'uploader': 'ndr2',
 | 
			
		||||
            'upload_date': '20150912',
 | 
			
		||||
            'duration': 3554,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/info/audio51535-player.html',
 | 
			
		||||
        'md5': 'bb3cd38e24fbcc866d13b50ca59307b8',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'audio51535',
 | 
			
		||||
            'ext': 'mp3',
 | 
			
		||||
            'title': 'La Valette entgeht der Hinrichtung',
 | 
			
		||||
            'is_live': False,
 | 
			
		||||
            'uploader': 'ndrinfo',
 | 
			
		||||
            'upload_date': '20140729',
 | 
			
		||||
            'duration': 884,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/fernsehen/sendungen/visite/visite11010-externalPlayer.html',
 | 
			
		||||
        'md5': 'ae57f80511c1e1f2fd0d0d3d31aeae7c',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'visite11010',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Visite - die ganze Sendung',
 | 
			
		||||
            'is_live': False,
 | 
			
		||||
            'uploader': 'ndrtv',
 | 
			
		||||
            'upload_date': '20150902',
 | 
			
		||||
            'duration': 3525,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        # httpVideoLive
 | 
			
		||||
        'url': 'http://www.ndr.de/fernsehen/livestream/livestream217-externalPlayer.html',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'livestream217',
 | 
			
		||||
            'ext': 'flv',
 | 
			
		||||
            'title': 're:^NDR Fernsehen Niedersachsen \d{4}-\d{2}-\d{2} \d{2}:\d{2}$',
 | 
			
		||||
            'is_live': True,
 | 
			
		||||
            'upload_date': '20150910',
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/ndrkultur/audio255020-player.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/fernsehen/sendungen/nordtour/nordtour7124-player.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/kultur/film/videos/videoimport10424-player.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/fernsehen/sendungen/hamburg_journal/hamj43006-player.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/fernsehen/sendungen/weltbilder/weltbilder4518-player.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.ndr.de/fernsehen/doku952-player.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }]
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class NJoyEmbedIE(NDREmbedBaseIE):
 | 
			
		||||
    IE_NAME = 'N-JOY:embed'
 | 
			
		||||
    _VALID_URL = r'https?://www\.n-joy\.de/(?:[^/]+/)+(?P<id>[a-z0-9]+)-(?:player|externalPlayer)\.html'
 | 
			
		||||
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        'url': 'http://www.n-joy.de/entertainment/film/portraet374-player_image-832d9b79-fa8a-4026-92e2-e0fd99deb2f9_theme-n-joy.html',
 | 
			
		||||
        'md5': 'cb63be60cd6f9dd75218803146d8dc67',
 | 
			
		||||
    IE_NAME = 'njoy:embed'
 | 
			
		||||
    _VALID_URL = r'https?://www\.n-joy\.de/(?:[^/]+/)+(?P<id>[\da-z]+)-(?:player|externalPlayer)_[^/]+\.html'
 | 
			
		||||
    _TESTS = [{
 | 
			
		||||
        # httpVideo
 | 
			
		||||
        'url': 'http://www.n-joy.de/events/reeperbahnfestival/doku948-player_image-bc168e87-5263-4d6d-bd27-bb643005a6de_theme-n-joy.html',
 | 
			
		||||
        'md5': '8483cbfe2320bd4d28a349d62d88bd74',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'portraet374',
 | 
			
		||||
            'id': 'doku948',
 | 
			
		||||
            'ext': 'mp4',
 | 
			
		||||
            'title': 'Viviane Andereggen - "Schuld um Schuld"',
 | 
			
		||||
            'duration': 129,
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
            'title': 'Zehn Jahre Reeperbahn Festival - die Doku',
 | 
			
		||||
            'is_live': False,
 | 
			
		||||
            'upload_date': '20150807',
 | 
			
		||||
            'duration': 1011,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        # httpAudio
 | 
			
		||||
        'url': 'http://www.n-joy.de/news_wissen/stefanrichter100-player_image-d5e938b1-f21a-4b9a-86b8-aaba8bca3a13_theme-n-joy.html',
 | 
			
		||||
        'md5': 'd989f80f28ac954430f7b8a48197188a',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'stefanrichter100',
 | 
			
		||||
            'ext': 'mp3',
 | 
			
		||||
            'title': 'Interview mit einem Augenzeugen',
 | 
			
		||||
            'is_live': False,
 | 
			
		||||
            'uploader': 'njoy',
 | 
			
		||||
            'upload_date': '20150909',
 | 
			
		||||
            'duration': 140,
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        # httpAudioLive, no explicit ext
 | 
			
		||||
        'url': 'http://www.n-joy.de/news_wissen/webradioweltweit100-player_image-3fec0484-2244-4565-8fb8-ed25fd28b173_theme-n-joy.html',
 | 
			
		||||
        'info_dict': {
 | 
			
		||||
            'id': 'webradioweltweit100',
 | 
			
		||||
            'ext': 'mp3',
 | 
			
		||||
            'title': 're:^N-JOY Weltweit \d{4}-\d{2}-\d{2} \d{2}:\d{2}$',
 | 
			
		||||
            'is_live': True,
 | 
			
		||||
            'uploader': 'njoy',
 | 
			
		||||
            'upload_date': '20150810',
 | 
			
		||||
        },
 | 
			
		||||
        'params': {
 | 
			
		||||
            'skip_download': True,
 | 
			
		||||
        },
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.n-joy.de/musik/dockville882-player_image-3905259e-0803-4764-ac72-8b7de077d80a_theme-n-joy.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.n-joy.de/radio/sendungen/morningshow/urlaubsfotos190-player_image-066a5df1-5c95-49ec-a323-941d848718db_theme-n-joy.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }, {
 | 
			
		||||
        'url': 'http://www.n-joy.de/entertainment/comedy/krudetv290-player_image-ab261bfe-51bf-4bf3-87ba-c5122ee35b3d_theme-n-joy.html',
 | 
			
		||||
        'only_matching': True,
 | 
			
		||||
    }]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user