mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[liveleak] Improve regex for restoring original video URL
This commit is contained in:
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…
Reference in New Issue
Block a user