1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

subtitle.wrstsegment: replace dot with comma

fixes: #1413
This commit is contained in:
Johan Andersson 2021-09-09 19:46:33 +02:00
parent b6a8c0e715
commit 012286201f

View File

@ -315,7 +315,7 @@ class subtitle:
ha = strdate(subs[-1][0]) ha = strdate(subs[-1][0])
ha3 = strdate(item) ha3 = strdate(item)
second = str2sec(ha3.group(2)) + time second = str2sec(ha3.group(2)) + time
subs[-1][0] = f"{ha.group(1)} --> {sec2str(second)}" subs[-1][0] = f"{ha.group(1).replace('.', ',')} --> {sec2str(second).replace('.', ',')}"
skip = True skip = True
pre_date_skip = False pre_date_skip = False
continue continue
@ -327,7 +327,7 @@ class subtitle:
skip = False skip = False
first = str2sec(has_date.group(1)) + time first = str2sec(has_date.group(1)) + time
second = str2sec(has_date.group(2)) + time second = str2sec(has_date.group(2)) + time
sub.append(f"{sec2str(first)} --> {sec2str(second)}") sub.append(f"{sec2str(first).replace('.', ',')} --> {sec2str(second).replace('.', ',')}")
several_items = True several_items = True
pre_date_skip = False pre_date_skip = False
elif has_date is None and skip is False and pre_date_skip is False: elif has_date is None and skip is False and pre_date_skip is False: