summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-04-02 18:48:05 +0600
committerSergey M․ <dstftw@gmail.com>2016-04-02 18:48:05 +0600
commitdb8ee7ec0598f8893e4259ac9373c44726e4f84f (patch)
treee0937fdea1456f6d315ac859afd843e215064084
parent08136dc13805abb1832587e03e68066f07bd5776 (diff)
downloadyoutube-dl-db8ee7ec0598f8893e4259ac9373c44726e4f84f.tar.gz
youtube-dl-db8ee7ec0598f8893e4259ac9373c44726e4f84f.tar.xz
youtube-dl-db8ee7ec0598f8893e4259ac9373c44726e4f84f.zip
[extractor/common] Fix numeric identifiers conversion in DASH URL templates
-rw-r--r--youtube_dl/extractor/common.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 94a583891..011edcc0a 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -1515,7 +1515,8 @@ class InfoExtractor(object):
                                 representation_ms_info['total_number'] = int(math.ceil(float(period_duration) / segment_duration))
                             media_template = representation_ms_info['media_template']
                             media_template = media_template.replace('$RepresentationID$', representation_id)
-                            media_template = re.sub(r'\$(Number|Bandwidth)(?:%(0\d+)d)?\$', r'%(\1)\2d', media_template)
+                            media_template = re.sub(r'\$(Number|Bandwidth)\$', r'%(\1)d', media_template)
+                            media_template = re.sub(r'\$(Number|Bandwidth)%(\d+)\$', r'%(\1)\2d', media_template)
                             media_template.replace('$$', '$')
                             representation_ms_info['segment_urls'] = [media_template % {'Number': segment_number, 'Bandwidth': representation_attrib.get('bandwidth')} for segment_number in range(representation_ms_info['start_number'], representation_ms_info['total_number'] + representation_ms_info['start_number'])]
                         if 'segment_urls' in representation_ms_info: