initial commit

This commit is contained in:
2026-05-30 23:29:44 -07:00
commit 431ffdff06
48 changed files with 4221 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from evanescere.services.subtitles import format_ass_time, format_srt_time
def test_format_srt_time():
assert format_srt_time(3661.234) == "01:01:01,234"
def test_format_ass_time():
assert format_ass_time(3661.23) == "1:01:01.23"