summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-06-25 01:10:31 +0700
committerSergey M․ <dstftw@gmail.com>2017-06-25 01:10:31 +0700
commit23aec3d623146d06535a4f5388693c1e9a2bbfde (patch)
tree9fbee42c51f5ac58f4522eea4f97e5003a62aadd
parent27449ad894f7d49e189686a15399ea66cfb63667 (diff)
downloadyoutube-dl-23aec3d623146d06535a4f5388693c1e9a2bbfde.tar.gz
youtube-dl-23aec3d623146d06535a4f5388693c1e9a2bbfde.tar.xz
youtube-dl-23aec3d623146d06535a4f5388693c1e9a2bbfde.zip
[redbulltv] Restore hls format prefix
-rw-r--r--youtube_dl/extractor/redbulltv.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/redbulltv.py b/youtube_dl/extractor/redbulltv.py
index c5918afee..5d6cc3610 100644
--- a/youtube_dl/extractor/redbulltv.py
+++ b/youtube_dl/extractor/redbulltv.py
@@ -98,7 +98,8 @@ class RedBullTVIE(InfoExtractor):
         title = info['title'].strip()
 
         formats = self._extract_m3u8_formats(
-            video['url'], video_id, 'mp4', 'm3u8_native')
+            video['url'], video_id, 'mp4', entry_protocol='m3u8_native',
+            m3u8_id='hls')
         self._sort_formats(formats)
 
         subtitles = {}