aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ntvde.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-02 21:48:54 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-02 21:48:54 +0100
commit8f4b58d70e29df13d6002579b5c9448acc89d6c1 (patch)
tree887a1e49cee709f58e7773bd5e9f2b73a1768351 /youtube_dl/extractor/ntvde.py
parent3fd45e03bf86c2ad2ef17362452a9a745dc10755 (diff)
downloadyoutube-dl-8f4b58d70e29df13d6002579b5c9448acc89d6c1.tar.xz
[ntvde] Add new extractor (Fixes #4850)
Diffstat (limited to 'youtube_dl/extractor/ntvde.py')
-rw-r--r--youtube_dl/extractor/ntvde.py65
1 files changed, 65 insertions, 0 deletions
diff --git a/youtube_dl/extractor/ntvde.py b/youtube_dl/extractor/ntvde.py
new file mode 100644
index 000000000..a4f628fcd
--- /dev/null
+++ b/youtube_dl/extractor/ntvde.py
@@ -0,0 +1,65 @@
+# encoding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+from ..utils import (
+ int_or_none,
+ js_to_json,
+ parse_duration,
+)
+
+
+class NTVDeIE(InfoExtractor):
+ IE_NAME = 'n-tv.de'
+ _VALID_URL = r'https?://(?:www\.)?n-tv\.de/mediathek/videos/[^/?#]+/[^/?#]+-article(?P<id>.+)\.html'
+
+ _TESTS = [{
+ 'url': 'http://www.n-tv.de/mediathek/videos/panorama/Schnee-und-Glaette-fuehren-zu-zahlreichen-Unfaellen-und-Staus-article14438086.html',
+ 'md5': 'd37b7df1eea32265c51a062499ca488f',
+ 'info_dict': {
+ 'id': '14438086',
+ 'ext': 'mp4',
+ 'thumbnail': 're:^https?://.*\.jpg$',
+ 'title': 'Schnee und Glätte führen zu zahlreichen Unfällen und Staus',
+ 'alt_title': 'Winterchaos auf deutschen Straßen',
+ 'description': 'Schnee und Glätte sorgen deutschlandweit für einen chaotischen Start in die Woche: Auf den Straßen kommt es zu kilometerlangen Staus und Dutzenden Glätteunfällen. In Düsseldorf und München wirbelt der Schnee zudem den Flugplan durcheinander. Dutzende Flüge landen zu spät, einige fallen ganz aus.',
+ 'duration': 4020,
+ 'timestamp': 1422892797,
+ 'upload_date': '20150202',
+ },
+ }]
+
+ def _real_extract(self, url):
+ video_id = self._match_id(url)
+ webpage = self._download_webpage(url, video_id)
+
+ info = self._parse_json(self._search_regex(
+ r'(?s)ntv.pageInfo.article =\s(\{.*?\});', webpage, 'info'),
+ video_id, transform_source=js_to_json)
+ timestamp = int_or_none(info.get('publishedDateAsUnixTimeStamp'))
+ vdata = self._parse_json(self._search_regex(
+ r'(?s)\$\(\s*"\#player"\s*\)\s*\.data\(\s*"player",\s*(\{.*?\})\);',
+ webpage, 'player data'),
+ video_id, transform_source=js_to_json)
+ duration = parse_duration(vdata.get('duration'))
+ formats = [{
+ 'format_id': 'flash',
+ 'url': 'rtmp://fms.n-tv.de/' + vdata['video'],
+ }, {
+ 'format_id': 'mp4',
+ 'url': 'http://video.n-tv.de' + vdata['videoMp4'],
+ }]
+ m3u8_url = 'http://video.n-tv.de' + vdata['videoM3u8']
+ formats.extend(self._extract_m3u8_formats(m3u8_url, video_id))
+ self._sort_formats(formats)
+
+ return {
+ 'id': video_id,
+ 'title': info['headline'],
+ 'description': info.get('intro'),
+ 'alt_title': info.get('kicker'),
+ 'timestamp': timestamp,
+ 'thumbnail': vdata.get('html5VideoPoster'),
+ 'duration': duration,
+ 'formats': formats,
+ }