diff options
author | remitamine <remitamine@gmail.com> | 2016-02-02 18:30:31 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-02-02 18:30:31 +0100 |
commit | 9c74423510003a5d6d03e6da1f73f9230df9281f (patch) | |
tree | 270508c6d0d3471b56b3c21b8439639018e15d2d /youtube_dl/extractor | |
parent | 5976e7ab579c4d1e2fae26acbaa628009b2d83a8 (diff) |
[common] fix media template regex
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/common.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 1758ab29b..eda16a315 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1442,9 +1442,9 @@ class InfoExtractor(object): representation_ms_info['total_number'] = int(math.ceil(period_duration / segment_duration)) media_template = representation_ms_info['media_template'] media_template = media_template.replace('$RepresentationID$', representation_id) - media_template = re.sub(r'\$(Bandwidth)(?:%(0\d+d))?\$', r'%(\1)\2', media_template) + media_template = re.sub(r'\$(Bandwidth)(?:%(0\d+)d)?\$', r'%(\1)\2d', media_template) media_template = media_template % {'Bandwidth': representation_attrib.get('bandwidth')} - media_template = re.sub(r'\$(Number)(?:%(0\d+d))?\$', r'%(\1)\2', media_template) + media_template = re.sub(r'\$(Number)(?:%(0\d+)d)?\$', r'%(\1)\2d', media_template) media_template.replace('$$', '$') representation_ms_info['segment_urls'] = [media_template % {'Number': segment_number} 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: |