[utils] Support alternative timestamp format in TTML

Fixes #7608
This commit is contained in:
Yen Chi Hsuan 2015-12-19 19:29:51 +08:00
parent d631d5f9f2
commit db2fe38b55
2 changed files with 3 additions and 2 deletions

View file

@ -1982,9 +1982,9 @@ def parse_dfxp_time_expr(time_expr):
if mobj:
return float(mobj.group('time_offset'))
mobj = re.match(r'^(\d+):(\d\d):(\d\d(?:\.\d+)?)$', time_expr)
mobj = re.match(r'^(\d+):(\d\d):(\d\d(?:(?:\.|:)\d+)?)$', time_expr)
if mobj:
return 3600 * int(mobj.group(1)) + 60 * int(mobj.group(2)) + float(mobj.group(3))
return 3600 * int(mobj.group(1)) + 60 * int(mobj.group(2)) + float(mobj.group(3).replace(':', '.'))
def srt_subtitles_timecode(seconds):