youtube-dl

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

commit 81515ad9f674597e0d41be6acfcb8592f2230f32
parent 8112d4b28429a4319bc3d9d111b69fa62e514de3
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 27 Oct 2014 02:28:37 +0100

[extractor/common] Improve m3u8 output

Diffstat:
Myoutube_dl/extractor/common.py | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -689,7 +689,10 @@ class InfoExtractor(object): if re.match(r'^https?://', u) else compat_urlparse.urljoin(m3u8_url, u)) - m3u8_doc = self._download_webpage(m3u8_url, video_id) + m3u8_doc = self._download_webpage( + m3u8_url, video_id, + note='Downloading m3u8 information', + errnote='Failed to download m3u8 information') last_info = None kv_rex = re.compile( r'(?P<key>[a-zA-Z_-]+)=(?P<val>"[^"]+"|[^",]+)(?:,|$)')