From 8a2e1006b3b272126332aa064f3ad95387129544 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Thu, 13 Feb 2025 14:13:49 +0530 Subject: new dot files --- .local/bin/srt-normalise | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 .local/bin/srt-normalise (limited to '.local/bin/srt-normalise') diff --git a/.local/bin/srt-normalise b/.local/bin/srt-normalise new file mode 100755 index 0000000..51461ce --- /dev/null +++ b/.local/bin/srt-normalise @@ -0,0 +1,28 @@ +#!/usr/local/bin/python3 + +"""Takes a badly formatted SRT file and outputs a strictly valid one.""" + +import srt_tools.utils +import logging + +log = logging.getLogger(__name__) + + +def main(): + examples = {"Normalise a subtitle": "srt normalise -i bad.srt -o good.srt"} + + args = srt_tools.utils.basic_parser( + description=__doc__, examples=examples, hide_no_strict=True + ).parse_args() + logging.basicConfig(level=args.log_level) + srt_tools.utils.set_basic_args(args) + output = srt_tools.utils.compose_suggest_on_fail(args.input, strict=args.strict) + + try: + args.output.write(output) + except (UnicodeEncodeError, TypeError): # Python 2 fallback + args.output.write(output.encode(args.encoding)) + + +if __name__ == "__main__": # pragma: no cover + main() -- cgit v1.2.3-59-g8ed1b