diff options
| -rw-r--r-- | youtube_dl/extractor/__init__.py | 5 | ||||
| -rw-r--r-- | youtube_dl/extractor/dailymotion.py | 5 | ||||
| -rw-r--r-- | youtube_dl/extractor/lifenews.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/ndr.py | 102 | 
4 files changed, 77 insertions, 36 deletions
| diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index 5cb3c304d..e808f2734 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -324,7 +324,10 @@ from .nbc import (      NBCSportsIE,      NBCSportsVPlayerIE,  ) -from .ndr import NDRIE +from .ndr import ( +    NDRIE, +    NJoyIE, +)  from .ndtv import NDTVIE  from .netzkino import NetzkinoIE  from .nerdcubed import NerdCubedFeedIE diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py index aa595af20..db10b8d00 100644 --- a/youtube_dl/extractor/dailymotion.py +++ b/youtube_dl/extractor/dailymotion.py @@ -52,6 +52,7 @@ class DailymotionIE(DailymotionBaseInfoExtractor):                  'ext': 'mp4',                  'uploader': 'IGN',                  'title': 'Steam Machine Models, Pricing Listed on Steam Store - IGN News', +                'upload_date': '20150306',              }          },          # Vevo video @@ -106,9 +107,9 @@ class DailymotionIE(DailymotionBaseInfoExtractor):          age_limit = self._rta_search(webpage)          video_upload_date = None -        mobj = re.search(r'<div class="[^"]*uploaded_cont[^"]*" title="[^"]*">([0-9]{2})-([0-9]{2})-([0-9]{4})</div>', webpage) +        mobj = re.search(r'<meta property="video:release_date" content="([0-9]{4})-([0-9]{2})-([0-9]{2}).+?"/>', webpage)          if mobj is not None: -            video_upload_date = mobj.group(3) + mobj.group(2) + mobj.group(1) +            video_upload_date = mobj.group(1) + mobj.group(2) + mobj.group(3)          embed_url = 'https://www.dailymotion.com/embed/video/%s' % video_id          embed_request = self._build_request(embed_url) diff --git a/youtube_dl/extractor/lifenews.py b/youtube_dl/extractor/lifenews.py index 7f39fa4cf..42cb6e35f 100644 --- a/youtube_dl/extractor/lifenews.py +++ b/youtube_dl/extractor/lifenews.py @@ -156,6 +156,7 @@ class LifeEmbedIE(InfoExtractor):                      'format_id': ext,                      'preference': 1,                  }) +        self._sort_formats(formats)          thumbnail = self._search_regex(              r'"image"\s*:\s*"([^"]+)', webpage, 'thumbnail', default=None) diff --git a/youtube_dl/extractor/ndr.py b/youtube_dl/extractor/ndr.py index f49c66690..79a13958b 100644 --- a/youtube_dl/extractor/ndr.py +++ b/youtube_dl/extractor/ndr.py @@ -8,41 +8,11 @@ from ..utils import (      ExtractorError,      int_or_none,      qualities, +    parse_duration,  ) -class NDRIE(InfoExtractor): -    IE_NAME = 'ndr' -    IE_DESC = 'NDR.de - Mediathek' -    _VALID_URL = r'https?://www\.ndr\.de/.+?(?P<id>\d+)\.html' - -    _TESTS = [ -        { -            'url': 'http://www.ndr.de/fernsehen/sendungen/nordmagazin/Kartoffeltage-in-der-Lewitz,nordmagazin25866.html', -            'md5': '5bc5f5b92c82c0f8b26cddca34f8bb2c', -            'note': 'Video file', -            'info_dict': { -                'id': '25866', -                'ext': 'mp4', -                'title': 'Kartoffeltage in der Lewitz', -                'description': 'md5:48c4c04dde604c8a9971b3d4e3b9eaa8', -                'duration': 166, -            } -        }, -        { -            'url': 'http://www.ndr.de/info/audio51535.html', -            'md5': 'bb3cd38e24fbcc866d13b50ca59307b8', -            'note': 'Audio file', -            'info_dict': { -                'id': '51535', -                'ext': 'mp3', -                'title': 'La Valette entgeht der Hinrichtung', -                'description': 'md5:22f9541913a40fe50091d5cdd7c9f536', -                'duration': 884, -            } -        } -    ] - +class NDRBaseIE(InfoExtractor):      def _real_extract(self, url):          mobj = re.match(self._VALID_URL, url)          video_id = mobj.group('id') @@ -54,7 +24,11 @@ class NDRIE(InfoExtractor):          if description:              description = description.strip() -        duration = int_or_none(self._html_search_regex(r'duration: (\d+),\n', page, 'duration', fatal=False)) +        duration = int_or_none(self._html_search_regex(r'duration: (\d+),\n', page, 'duration', default=None)) +        if not duration: +            duration = parse_duration(self._html_search_regex( +                r'(<span class="min">\d+</span>:<span class="sec">\d+</span>)', +                page, 'duration', default=None))          formats = [] @@ -92,3 +66,65 @@ class NDRIE(InfoExtractor):              'duration': duration,              'formats': formats,          } + + +class NDRIE(NDRBaseIE): +    IE_NAME = 'ndr' +    IE_DESC = 'NDR.de - Mediathek' +    _VALID_URL = r'https?://www\.ndr\.de/.+?(?P<id>\d+)\.html' + +    _TESTS = [ +        { +            'url': 'http://www.ndr.de/fernsehen/sendungen/nordmagazin/Kartoffeltage-in-der-Lewitz,nordmagazin25866.html', +            'md5': '5bc5f5b92c82c0f8b26cddca34f8bb2c', +            'note': 'Video file', +            'info_dict': { +                'id': '25866', +                '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': '988', +                'ext': 'mp4', +                'title': 'Party, Pötte und Parade', +                'description': 'Hunderttausende feiern zwischen Speicherstadt und St. Pauli den 826. Hafengeburtstag. Die NDR Sondersendung zeigt die schönsten und spektakulärsten Bilder vom Auftakt.', +                'duration': 3498, +            }, +        }, +        { +            'url': 'http://www.ndr.de/info/audio51535.html', +            'md5': 'bb3cd38e24fbcc866d13b50ca59307b8', +            'note': 'Audio file', +            'info_dict': { +                'id': '51535', +                'ext': 'mp3', +                'title': 'La Valette entgeht der Hinrichtung', +                'description': 'md5:22f9541913a40fe50091d5cdd7c9f536', +                'duration': 884, +            } +        } +    ] + + +class NJoyIE(NDRBaseIE): +    IE_NAME = 'N-JOY' +    _VALID_URL = r'https?://www\.n-joy\.de/.+?(?P<id>\d+)\.html' + +    _TEST = { +        'url': 'http://www.n-joy.de/entertainment/comedy/comedy_contest/Benaissa-beim-NDR-Comedy-Contest,comedycontest2480.html', +        'md5': 'cb63be60cd6f9dd75218803146d8dc67', +        'info_dict': { +            'id': '2480', +            'ext': 'mp4', +            'title': 'Benaissa beim NDR Comedy Contest', +            'description': 'Von seinem sehr "behaarten" Leben lässt sich Benaissa trotz aller Schwierigkeiten nicht unterkriegen.', +            'duration': 654, +        } +    } | 
