about summary refs log tree commit diff
path: root/youtube_dl/extractor/hotstar.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-09-19 03:02:15 +0700
committerSergey M․ <dstftw@gmail.com>2019-09-19 03:03:07 +0700
commitd9d3098675daf219e0e0f910fbd704beb1775ae7 (patch)
treeefa3cdc8e5fdbeba960037336014068a76d51dca /youtube_dl/extractor/hotstar.py
parent1cb812d3c257b3f6d3c07ccabcbdebd0190fbec4 (diff)
downloadyoutube-dl-d9d3098675daf219e0e0f910fbd704beb1775ae7.tar.gz
youtube-dl-d9d3098675daf219e0e0f910fbd704beb1775ae7.tar.xz
youtube-dl-d9d3098675daf219e0e0f910fbd704beb1775ae7.zip
[hotstar] Use native HLS downloader by default
Diffstat (limited to 'youtube_dl/extractor/hotstar.py')
-rw-r--r--youtube_dl/extractor/hotstar.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/hotstar.py b/youtube_dl/extractor/hotstar.py
index c7545a1e6..f9f7c5a64 100644
--- a/youtube_dl/extractor/hotstar.py
+++ b/youtube_dl/extractor/hotstar.py
@@ -136,7 +136,8 @@ class HotStarIE(HotStarBaseIE):
             try:
                 if 'package:hls' in tags or ext == 'm3u8':
                     formats.extend(self._extract_m3u8_formats(
-                        format_url, video_id, 'mp4', m3u8_id='hls'))
+                        format_url, video_id, 'mp4',
+                        entry_protocol='m3u8_native', m3u8_id='hls'))
                 elif 'package:dash' in tags or ext == 'mpd':
                     formats.extend(self._extract_mpd_formats(
                         format_url, video_id, mpd_id='dash'))