2022-09-28 01:57:08 +01:00
|
|
|
import os
|
|
|
|
from typing import Iterator, TextIO
|
|
|
|
|
|
|
|
|
|
|
|
def str2bool(string):
|
2022-10-05 23:55:41 +08:00
|
|
|
string = string.lower()
|
|
|
|
str2val = {"true": True, "false": False}
|
|
|
|
|
2022-09-28 01:57:08 +01:00
|
|
|
if string in str2val:
|
|
|
|
return str2val[string]
|
|
|
|
else:
|
|
|
|
raise ValueError(
|
|
|
|
f"Expected one of {set(str2val.keys())}, got {string}")
|
|
|
|
|
|
|
|
|
|
|
|
def format_timestamp(seconds: float, always_include_hours: bool = False):
|
|
|
|
assert seconds >= 0, "non-negative timestamp expected"
|
|
|
|
milliseconds = round(seconds * 1000.0)
|
|
|
|
|
|
|
|
hours = milliseconds // 3_600_000
|
|
|
|
milliseconds -= hours * 3_600_000
|
|
|
|
|
|
|
|
minutes = milliseconds // 60_000
|
|
|
|
milliseconds -= minutes * 60_000
|
|
|
|
|
|
|
|
seconds = milliseconds // 1_000
|
|
|
|
milliseconds -= seconds * 1_000
|
|
|
|
|
2023-06-14 05:33:04 +07:00
|
|
|
hours_marker = f"{hours:02d}:" if always_include_hours or hours > 0 else ""
|
|
|
|
return f"{hours_marker}{minutes:02d}:{seconds:02d},{milliseconds:03d}"
|
2022-09-28 01:57:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
def write_srt(transcript: Iterator[dict], file: TextIO):
|
|
|
|
for i, segment in enumerate(transcript, start=1):
|
|
|
|
print(
|
|
|
|
f"{i}\n"
|
|
|
|
f"{format_timestamp(segment['start'], always_include_hours=True)} --> "
|
|
|
|
f"{format_timestamp(segment['end'], always_include_hours=True)}\n"
|
|
|
|
f"{segment['text'].strip().replace('-->', '->')}\n",
|
|
|
|
file=file,
|
|
|
|
flush=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def filename(path):
|
|
|
|
return os.path.splitext(os.path.basename(path))[0]
|