mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2024-11-14 20:17:29 +00:00
Captions: Python code cleanup and optimisation
This commit is contained in:
parent
6709aa30c2
commit
8e69928756
@ -10,24 +10,14 @@ def extract_captions(id, **kwargs):
|
|||||||
|
|
||||||
# Return captions for the language specified,
|
# Return captions for the language specified,
|
||||||
# The captions list otherwise
|
# The captions list otherwise
|
||||||
def extract_captions_from_dict(captions, **kwargs):
|
def extract_captions_from_dict(captions, *, lang=None, label=None):
|
||||||
lang = None
|
if lang is None and label is None:
|
||||||
label = None
|
|
||||||
|
|
||||||
if "lang" in kwargs:
|
|
||||||
lang = kwargs["lang"]
|
|
||||||
elif "label" in kwargs:
|
|
||||||
label = kwargs["label"]
|
|
||||||
else:
|
|
||||||
return captions
|
return captions
|
||||||
|
|
||||||
for subtitle in captions["captions"]:
|
url = next(caption["second__remoteUrl"] for caption in captions["captions"] if caption["languageCode"] == lang or caption["label"] == label)
|
||||||
if lang == subtitle["languageCode"] or label == subtitle["label"]:
|
|
||||||
url = subtitle["second__subtitleUrl"]
|
|
||||||
|
|
||||||
with requests.get(url) as r:
|
with requests.get(url) as r:
|
||||||
r.raise_for_status()
|
r.raise_for_status()
|
||||||
return r.content.decode("utf8")
|
return r
|
||||||
|
|
||||||
# Currently unused in favour of extract_captions_from_api.
|
# Currently unused in favour of extract_captions_from_api.
|
||||||
def extract_captions_from_video(id):
|
def extract_captions_from_video(id):
|
||||||
@ -67,7 +57,7 @@ def extract_captions_from_api(id):
|
|||||||
"label": label if label != "" else language_code,
|
"label": label if label != "" else language_code,
|
||||||
"languageCode": language_code,
|
"languageCode": language_code,
|
||||||
"url": subtitle_api_url,
|
"url": subtitle_api_url,
|
||||||
"second__subtitleUrl": subtitle_url
|
"second__remoteUrl": subtitle_url
|
||||||
})
|
})
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
@ -174,15 +174,14 @@ def extract_video(id):
|
|||||||
"second__height": format["height"]
|
"second__height": format["height"]
|
||||||
})
|
})
|
||||||
|
|
||||||
if "requested_subtitles" in info and info["requested_subtitles"]:
|
if info.get("requested_subtitles"):
|
||||||
|
|
||||||
for language_code, subtitle in info["requested_subtitles"].items():
|
for language_code, subtitle in info["requested_subtitles"].items():
|
||||||
|
if language_code == "live_chat":
|
||||||
|
continue
|
||||||
|
|
||||||
if language_code != "live_chat":
|
|
||||||
subtitle_url = subtitle["url"]
|
subtitle_url = subtitle["url"]
|
||||||
label = get_language_label_from_url(subtitle_url)
|
label = get_language_label_from_url(subtitle_url)
|
||||||
subtitle_api_url = get_subtitle_api_url(id, label, language_code)
|
subtitle_api_url = get_subtitle_api_url(id, label, language_code)
|
||||||
|
|
||||||
result["captions"].append({
|
result["captions"].append({
|
||||||
"label": label if label != "" else language_code,
|
"label": label if label != "" else language_code,
|
||||||
"languageCode": language_code,
|
"languageCode": language_code,
|
||||||
|
Loading…
Reference in New Issue
Block a user