1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 13:44:14 +01:00

urplay: use wsrt subtitles instead of tt

fixes: #1324
This commit is contained in:
Johan Andersson 2021-02-16 23:57:16 +01:00
parent 0bcf162083
commit 29744a58af

View File

@ -46,13 +46,13 @@ class Urplay(Service, OpenGraphThumbMixin):
for n in list(streams.keys()):
yield streams[n]
if not (self.config.get("get_all_subtitles")) and (stream["default"]):
yield subtitle(copy.copy(self.config), "tt", stream["tt"]["location"], output=self.output)
yield subtitle(copy.copy(self.config), "wrst", stream["tt"]["location"].replace(".tt", ".vtt"), output=self.output)
if self.config.get("get_all_subtitles") and "tt" in stream:
label = stream["tt"]["language"]
if stream["tt"]["scope"] != "complete":
label = "{}-{}".format(label, stream["tt"]["scope"])
yield subtitle(copy.copy(self.config), "tt", stream["tt"]["location"], label, output=copy.copy(self.output))
yield subtitle(copy.copy(self.config), "wrst", stream["tt"]["location"].replace(".tt", ".vtt"), label, output=copy.copy(self.output))
def find_all_episodes(self, config):
episodes = []