Skip to content

Instantly share code, notes, and snippets.

@sfan5
sfan5 / ttml2ass.py
Last active December 6, 2021 16:40
Converts TTML (XML) subtitles to SSA/ASS format
#!/usr/bin/env python3
import sys
from xml.dom.minidom import parseString
COLORS = { # TODO more colors
"white" : "FFFFFF",
"black" : "000000",
"yellow" : "FFFF00",
"green" : "00FF00",
"cyan" : "00FFFF",