mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-20 01:42:50 +01:00
[webvtt] Handle premature EOF
Closes #2867, closes #5600 Authored by: flashdagger
This commit is contained in:
parent
02b2f9fa7d
commit
f352a09778
@ -93,7 +93,7 @@ def __init__(self, parser):
|
|||||||
([0-9]{3})?
|
([0-9]{3})?
|
||||||
''')
|
''')
|
||||||
_REGEX_EOF = re.compile(r'\Z')
|
_REGEX_EOF = re.compile(r'\Z')
|
||||||
_REGEX_NL = re.compile(r'(?:\r\n|[\r\n])')
|
_REGEX_NL = re.compile(r'(?:\r\n|[\r\n]|$)')
|
||||||
_REGEX_BLANK = re.compile(r'(?:\r\n|[\r\n])+')
|
_REGEX_BLANK = re.compile(r'(?:\r\n|[\r\n])+')
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user