Merge pull request #174 from wangxingda/fix_encoding_bug

add default subtitle encoding to utf-8
This commit is contained in:
Harry 2024-04-05 21:13:39 +08:00 committed by GitHub
commit 244c1a7a22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: