youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit dae503afaa8dbbf745a3c796dab1506cd736de83
parent b39eab7f94328f2aec7e6636f1df7b62803e1811
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 17 Jan 2016 22:14:07 +0600

[atresplayer] Skip HLS completely (Closes #8261)

Diffstat:
Myoutube_dl/extractor/atresplayer.py | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/youtube_dl/extractor/atresplayer.py b/youtube_dl/extractor/atresplayer.py @@ -132,11 +132,6 @@ class AtresPlayerIE(InfoExtractor): }) formats.append(format_info) - m3u8_url = player.get('urlVideoHls') - if m3u8_url: - formats.extend(self._extract_m3u8_formats( - m3u8_url, episode_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False)) - timestamp = int_or_none(self._download_webpage( self._TIME_API_URL, video_id, 'Downloading timestamp', fatal=False), 1000, time.time())