Fix for writing clean ASS subtitles

For a couple of files, I had UnicodeEncodeErrors raised when writing out a file it had successfully read in.
In my case, the output file was truncated to 1 KB.
This commit is contained in:
JayZed 2024-05-02 00:02:36 -04:00
parent 86b889d3b6
commit 865a875364
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ def _clean_ass_subtitles(path, output_path):
logger.debug("Cleaned lines: %d", abs(len(lines) - len(clean_lines)))
with open(output_path, "w") as f:
with open(output_path, "w", encoding="utf-8", errors="ignore") as f:
f.writelines(clean_lines)
logger.debug("Lines written to output path: %s", output_path)