[liveleak] Improve regex for restoring original video URL

totalwebcasting
Sergey M․ 9 years ago
parent 7d0c934a3e
commit 00ac23e6e0

@ -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,

Loading…
Cancel
Save