projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50b9369
)
[extractor/common] get the redirected m3u8_url in _extract_m3u8_formats
author
remitamine
<remitamine@gmail.com>
Tue, 8 Sep 2015 18:35:41 +0000
(19:35 +0100)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 24 Oct 2015 13:01:54 +0000
(19:01 +0600)
youtube_dl/extractor/common.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/common.py
b/youtube_dl/extractor/common.py
index 04b6999729b19b75bce6a308380c41cb429f971d..10c0d5d1f91f49846176d28a0edfb8f3cfa61801 100644
(file)
--- a/
youtube_dl/extractor/common.py
+++ b/
youtube_dl/extractor/common.py
@@
-943,13
+943,14
@@
class InfoExtractor(object):
if re.match(r'^https?://', u)
else compat_urlparse.urljoin(m3u8_url, u))
- m3u8_doc
= self._download_webpag
e(
+ m3u8_doc
, urlh = self._download_webpage_handl
e(
m3u8_url, video_id,
note=note or 'Downloading m3u8 information',
errnote=errnote or 'Failed to download m3u8 information',
fatal=fatal)
if m3u8_doc is False:
return m3u8_doc
+ m3u8_url = urlh.geturl()
last_info = None
last_media = None
kv_rex = re.compile(