aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-09-16 00:54:34 +0700
committerSergey M․ <dstftw@gmail.com>2016-09-16 00:54:34 +0700
commit9d8985a165ebdc9fd8d72e7536253c42162b58a6 (patch)
tree71c3c86e9d97e04009cd7929c355b54a2c29dcdb
parentf5e008d134f5e69920829cfd7a5ce5ae57d275c1 (diff)
downloadyoutube-dl-9d8985a165ebdc9fd8d72e7536253c42162b58a6.tar.xz
[tv4] Fix hls and hds formats (Closes #10659)
-rw-r--r--youtube_dl/extractor/tv4.py49
1 files changed, 32 insertions, 17 deletions
diff --git a/youtube_dl/extractor/tv4.py b/youtube_dl/extractor/tv4.py
index 343edf206..5d2d8f132 100644
--- a/youtube_dl/extractor/tv4.py
+++ b/youtube_dl/extractor/tv4.py
@@ -2,9 +2,13 @@
from __future__ import unicode_literals
from .common import InfoExtractor
+from ..compat import compat_str
from ..utils import (
ExtractorError,
+ int_or_none,
parse_iso8601,
+ try_get,
+ update_url_query,
)
@@ -65,36 +69,47 @@ class TV4IE(InfoExtractor):
video_id = self._match_id(url)
info = self._download_json(
- 'http://www.tv4play.se/player/assets/%s.json' % video_id, video_id, 'Downloading video info JSON')
+ 'http://www.tv4play.se/player/assets/%s.json' % video_id,
+ video_id, 'Downloading video info JSON')
# If is_geo_restricted is true, it doesn't necessarily mean we can't download it
- if info['is_geo_restricted']:
+ if info.get('is_geo_restricted'):
self.report_warning('This content might not be available in your country due to licensing restrictions.')
- if info['requires_subscription']:
+ if info.get('requires_subscription'):
raise ExtractorError('This content requires subscription.', expected=True)
- sources_data = self._download_json(
- 'https://prima.tv4play.se/api/web/asset/%s/play.json?protocol=http&videoFormat=MP4' % video_id, video_id, 'Downloading sources JSON')
- sources = sources_data['playback']
+ title = info['title']
formats = []
- for item in sources.get('items', {}).get('item', []):
- ext, bitrate = item['mediaFormat'], item['bitrate']
- formats.append({
- 'format_id': '%s_%s' % (ext, bitrate),
- 'tbr': bitrate,
- 'ext': ext,
- 'url': item['url'],
- })
+ # http formats are linked with unresolvable host
+ for kind in ('hls', ''):
+ data = self._download_json(
+ 'https://prima.tv4play.se/api/web/asset/%s/play.json' % video_id,
+ video_id, 'Downloading sources JSON', query={
+ 'protocol': kind,
+ 'videoFormat': 'MP4+WEBVTTS+WEBVTT',
+ })
+ item = try_get(data, lambda x: x['playback']['items']['item'], dict)
+ manifest_url = item.get('url')
+ if not isinstance(manifest_url, compat_str):
+ continue
+ if kind == 'hls':
+ formats.extend(self._extract_m3u8_formats(
+ manifest_url, video_id, 'mp4', entry_protocol='m3u8_native',
+ m3u8_id=kind, fatal=False))
+ else:
+ formats.extend(self._extract_f4m_formats(
+ update_url_query(manifest_url, {'hdcore': '3.8.0'}),
+ video_id, f4m_id='hds', fatal=False))
self._sort_formats(formats)
return {
'id': video_id,
- 'title': info['title'],
+ 'title': title,
'formats': formats,
'description': info.get('description'),
'timestamp': parse_iso8601(info.get('broadcast_date_time')),
- 'duration': info.get('duration'),
+ 'duration': int_or_none(info.get('duration')),
'thumbnail': info.get('image'),
- 'is_live': sources.get('live'),
+ 'is_live': info.get('is_live') is True,
}