aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ntvde.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-01-14 22:05:04 +0600
committerSergey M․ <dstftw@gmail.com>2016-01-14 22:05:04 +0600
commit163e8369b0d2f6b8cc59dd1e93b20a980590648f (patch)
treeb42921485adf5d0ec3b28393f472d78eefdd42c3 /youtube_dl/extractor/ntvde.py
parent5cc9c5dfa8f731b6582b092e06f78cccbaefc3c4 (diff)
downloadyoutube-dl-163e8369b0d2f6b8cc59dd1e93b20a980590648f.tar.xz
[ntvde] Fix extraction
Diffstat (limited to 'youtube_dl/extractor/ntvde.py')
-rw-r--r--youtube_dl/extractor/ntvde.py31
1 files changed, 19 insertions, 12 deletions
diff --git a/youtube_dl/extractor/ntvde.py b/youtube_dl/extractor/ntvde.py
index d2cfe0961..8268eace7 100644
--- a/youtube_dl/extractor/ntvde.py
+++ b/youtube_dl/extractor/ntvde.py
@@ -2,6 +2,7 @@
from __future__ import unicode_literals
from .common import InfoExtractor
+from ..compat import compat_urlparse
from ..utils import (
int_or_none,
js_to_json,
@@ -42,18 +43,24 @@ class NTVDeIE(InfoExtractor):
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': 'mobile',
- 'url': 'http://video.n-tv.de' + vdata['videoMp4'],
- 'tbr': 400, # estimation
- }]
- m3u8_url = 'http://video.n-tv.de' + vdata['videoM3u8']
- formats.extend(self._extract_m3u8_formats(
- m3u8_url, video_id, ext='mp4',
- entry_protocol='m3u8_native', preference=0))
+
+ formats = []
+ if vdata.get('video'):
+ formats.append({
+ 'format_id': 'flash',
+ 'url': 'rtmp://fms.n-tv.de/%s' % vdata['video'],
+ })
+ if vdata.get('videoMp4'):
+ formats.append({
+ 'format_id': 'mobile',
+ 'url': compat_urlparse.urljoin('http://video.n-tv.de', vdata['videoMp4']),
+ 'tbr': 400, # estimation
+ })
+ if vdata.get('videoM3u8'):
+ m3u8_url = compat_urlparse.urljoin('http://video.n-tv.de', vdata['videoM3u8'])
+ formats.extend(self._extract_m3u8_formats(
+ m3u8_url, video_id, ext='mp4', entry_protocol='m3u8_native',
+ preference=0, m3u8_id='hls', fatal=False))
self._sort_formats(formats)
return {