From: Sergey M․ Date: Sat, 30 May 2015 09:14:10 +0000 (+0600) Subject: [vgtv] Skip wasLive hds (Closes #5835) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=5c2191a6053cb5b1210cef68406e8a52e86fd9fd;p=youtube-dl [vgtv] Skip wasLive hds (Closes #5835) --- diff --git a/youtube_dl/extractor/vgtv.py b/youtube_dl/extractor/vgtv.py index e6ee1e471..654298431 100644 --- a/youtube_dl/extractor/vgtv.py +++ b/youtube_dl/extractor/vgtv.py @@ -107,7 +107,8 @@ class VGTVIE(InfoExtractor): hls_url, video_id, 'mp4', m3u8_id='hls')) hds_url = streams.get('hds') - if hds_url: + # wasLive hds are always 404 + if hds_url and data.get('streamType') != 'wasLive': formats.extend(self._extract_f4m_formats( hds_url + '?hdcore=3.2.0&plugin=aasp-3.2.0.77.18', video_id, f4m_id='hds'))