diff options
| -rw-r--r-- | youtube_dl/extractor/liveleak.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/liveleak.py b/youtube_dl/extractor/liveleak.py index c658cc92b..e82f21ea7 100644 --- a/youtube_dl/extractor/liveleak.py +++ b/youtube_dl/extractor/liveleak.py @@ -95,7 +95,7 @@ class LiveLeakIE(InfoExtractor):              'url': s['file'],          } for i, s in enumerate(sources)]          for i, s in enumerate(sources): -            orig_url = re.sub(r'.h264_.+\.mp4', '', s['file']) +            orig_url = re.sub(r'\.h264_.+?\.mp4', '', s['file'])              if s['file'] != orig_url:                  formats.append({                      'format_id': 'original-%s' % i, | 
