mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-22 16:44:32 +01:00
Add better regex for subtitles extraction
This commit is contained in:
parent
be7ed83941
commit
62535b93cf
@ -316,7 +316,7 @@ class TVPlayIE(InfoExtractor):
|
|||||||
default = compat_urlparse.urlparse(url).netloc.rsplit('.', 1)[-1]
|
default = compat_urlparse.urlparse(url).netloc.rsplit('.', 1)[-1]
|
||||||
for path in sub_paths:
|
for path in sub_paths:
|
||||||
if path:
|
if path:
|
||||||
lang = self._search_regex(r'_(.*)(\.)', path, 'lang', default)
|
lang = self._search_regex(r'_([a-z]{2}(?:_sdh)?)\.(?:vtt|xml)', path, 'lang', default)
|
||||||
subtitles[lang] = [{
|
subtitles[lang] = [{
|
||||||
'url': path,
|
'url': path,
|
||||||
}]
|
}]
|
||||||
|
Loading…
Reference in New Issue
Block a user