Via this post,
File: opendm/video/srtparser.py
Due to a missing comma, two regex patterns are unintentionally concatenated into a single string:
shutter = match_single([
"shutter : \d+/(\d+\.?\d*)"
"SS (\d+\.?\d*)"
], line)
Suggested fix:
shutter = match_single([
"shutter : \d+/(\d+\.?\d*)",
"SS (\d+\.?\d*)"
], line)
Via this post,