mirror of
https://github.com/harry0703/MoneyPrinterTurbo.git
synced 2026-02-25 18:37:22 +08:00
add default subtitle encoding to utf-8
This commit is contained in:
parent
bbe9e323f2
commit
2df2cc0dab
@ -1102,7 +1102,7 @@ def create_subtitle(sub_maker: submaker.SubMaker, text: str, subtitle_file: str)
|
||||
with open(subtitle_file, "w", encoding="utf-8") as file:
|
||||
file.write("\n".join(sub_items) + "\n")
|
||||
try:
|
||||
sbs = subtitles.file_to_subtitles(subtitle_file)
|
||||
sbs = subtitles.file_to_subtitles(subtitle_file, encoding="utf-8")
|
||||
duration = max([tb for ((ta, tb), txt) in sbs])
|
||||
logger.info(f"completed, subtitle file created: {subtitle_file}, duration: {duration}")
|
||||
except Exception as e:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user