Last active
August 23, 2024 20:07
-
-
Save nimatrueway/0be2b06471093e100d869e0e35baf06b to your computer and use it in GitHub Desktop.
Fixing RTL texts before embedding in video as subtitles using ffmpeg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import pysrt | |
from sys import argv | |
from collections import Counter | |
import unicodedata as ud | |
# Function that detects the dominant writing direction of a string | |
# https://stackoverflow.com/a/75739782/10327858 | |
def dominant_strong_direction(s): | |
count = Counter([ud.bidirectional(c) for c in list(s)]) | |
rtl_count = count['R'] + count['AL'] + count['RLE'] + count["RLI"] | |
ltr_count = count['L'] + count['LRE'] + count["LRI"] | |
return "rtl" if rtl_count > ltr_count else "ltr" | |
filename = argv[1] | |
subs = pysrt.open(filename) | |
for sub in subs: | |
if dominant_strong_direction(sub.text) == "rtl": | |
sub.text = "\u202b"+sub.text+"\u202c" | |
subs.save(filename, encoding='utf-8') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment