aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/livestream.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-09 23:11:09 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-09 23:11:09 +0600
commite375a149e16139d0bd2d677d90d4ffe62c6116df (patch)
tree4a29bd144ddb55a7bd461930738a0bbf6fe5b6bd /youtube_dl/extractor/livestream.py
parent2bfc0e97f655a1c1c059cbc3e27e44faafc9d622 (diff)
downloadyoutube-dl-e375a149e16139d0bd2d677d90d4ffe62c6116df.zip
youtube-dl-e375a149e16139d0bd2d677d90d4ffe62c6116df.tar.gz
youtube-dl-e375a149e16139d0bd2d677d90d4ffe62c6116df.tar.bz2
[livestream] Properly build smil URLs (#8794)
Diffstat (limited to 'youtube_dl/extractor/livestream.py')
-rw-r--r--youtube_dl/extractor/livestream.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py
index 9884362..eada7c2 100644
--- a/youtube_dl/extractor/livestream.py
+++ b/youtube_dl/extractor/livestream.py
@@ -14,6 +14,7 @@ from ..utils import (
xpath_with_ns,
xpath_text,
orderedSet,
+ update_url_query,
int_or_none,
float_or_none,
parse_iso8601,
@@ -72,7 +73,10 @@ class LivestreamIE(InfoExtractor):
for vn in video_nodes:
tbr = int_or_none(vn.attrib.get('system-bitrate'), 1000)
furl = (
- '%s%s?v=3.0.3&fp=WIN%%2014,0,0,145' % (base, vn.attrib['src']))
+ update_url_query(compat_urlparse.urljoin(base, vn.attrib['src']), {
+ 'v': '3.0.3',
+ 'fp': 'WIN% 14,0,0,145',
+ }))
if 'clipBegin' in vn.attrib:
furl += '&ssek=' + vn.attrib['clipBegin']
formats.append({