Skip to content

Instantly share code, notes, and snippets.

@rBrenick
rBrenick / split_subtitle_file_into_multiline.py
Last active September 12, 2024 23:32
Take an .srt file and split the text line if the character count goes above a certain threshold.
import sys
import argparse
"""
Example usecase:
python split_srt_lines.py SUBTITLE_FILE_PATH.srt -o OUTPUT_FILE_PATH.srt --max_line_length=42 --comma_split_percent=75
if you don't specify an output path, it will replace the file content of the input file