diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-10-18 20:24:33 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-10-18 20:24:33 +0600 |
commit | e36963e0eb57294f156a98c38df891dec41ebaa4 (patch) | |
tree | 47d6d1f5c57e41fae8b1276446459ea434df1b72 /youtube_dl | |
parent | dedd35c6bc33eb88f19b16eeb37498cee076c47a (diff) |
[eagleplatform] Identify hls formats
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/eagleplatform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/eagleplatform.py b/youtube_dl/extractor/eagleplatform.py index e529b9b96..7bbf617d4 100644 --- a/youtube_dl/extractor/eagleplatform.py +++ b/youtube_dl/extractor/eagleplatform.py @@ -87,7 +87,7 @@ class EaglePlatformIE(InfoExtractor): m3u8_url = self._get_video_url(secure_m3u8, video_id, 'Downloading m3u8 JSON') formats = self._extract_m3u8_formats( m3u8_url, video_id, - 'mp4', entry_protocol='m3u8_native') + 'mp4', entry_protocol='m3u8_native', m3u8_id='hls') mp4_url = self._get_video_url( # Secure mp4 URL is constructed according to Player.prototype.mp4 from |