mirror of https://github.com/yt-dlp/yt-dlp.git
[vlive] Prefer locale over language for subtitles id
This commit is contained in:
parent
6b4dfa2819
commit
49b69ad91c
|
@ -116,7 +116,7 @@ class VLiveIE(InfoExtractor):
|
||||||
|
|
||||||
subtitles = {}
|
subtitles = {}
|
||||||
for caption in playinfo.get('captions', {}).get('list', []):
|
for caption in playinfo.get('captions', {}).get('list', []):
|
||||||
lang = dict_get(caption, ('language', 'locale', 'country', 'label'))
|
lang = dict_get(caption, ('locale', 'language', 'country', 'label'))
|
||||||
if lang and caption.get('source'):
|
if lang and caption.get('source'):
|
||||||
subtitles[lang] = [{
|
subtitles[lang] = [{
|
||||||
'ext': 'vtt',
|
'ext': 'vtt',
|
||||||
|
|
Loading…
Reference in New Issue