aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/viu.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-12-18 18:24:01 +0100
committerRemita Amine <remitamine@gmail.com>2016-12-18 18:24:01 +0100
commited7b333fbfe7bfb0ac0986c6be15d223341a7ac7 (patch)
tree25704cfbe95c6b1282899750362d8bffb3ca1889 /youtube_dl/extractor/viu.py
parent723103151ead8b22ff4a61d009d16ec26b31248a (diff)
downloadyoutube-dl-ed7b333fbfe7bfb0ac0986c6be15d223341a7ac7.tar.xz
[viu] extract supported hls manifest
Diffstat (limited to 'youtube_dl/extractor/viu.py')
-rw-r--r--youtube_dl/extractor/viu.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/youtube_dl/extractor/viu.py b/youtube_dl/extractor/viu.py
index 1a81b4845..d4861a2fe 100644
--- a/youtube_dl/extractor/viu.py
+++ b/youtube_dl/extractor/viu.py
@@ -86,13 +86,17 @@ class ViuIE(ViuBaseIE):
m3u8_url = None
url_path = video_data.get('urlpathd') or video_data.get('urlpath')
tdirforwhole = video_data.get('tdirforwhole')
- hls_file = video_data.get('hlsfile')
+ # #EXT-X-BYTERANGE is not supported by native hls downloader
+ # and ffmpeg (#10955)
+ # hls_file = video_data.get('hlsfile')
+ hls_file = video_data.get('jwhlsfile')
if url_path and tdirforwhole and hls_file:
m3u8_url = '%s/%s/%s' % (url_path, tdirforwhole, hls_file)
else:
- m3u8_url = re.sub(
- r'(/hlsc_)[a-z]+(\d+\.m3u8)',
- r'\1whe\2', video_data['href'])
+ # m3u8_url = re.sub(
+ # r'(/hlsc_)[a-z]+(\d+\.m3u8)',
+ # r'\1whe\2', video_data['href'])
+ m3u8_url = video_data['href']
formats = self._extract_m3u8_formats(m3u8_url, video_id, 'mp4')
self._sort_formats(formats)