Files
wehub-resource-sync 9a6da7d40d
Publish Docker image / Build and publish (push) Failing after 0s
CI / Python tests (push) Failing after 4s
chore: import upstream snapshot with attribution
2026-07-13 12:03:55 +08:00

31 lines
556 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
PUNCTUATIONS = [
"?",
",",
".",
"、",
";",
":",
"!",
"…",
"",
"",
"。",
"、",
"",
"",
"",
"...",
# 阿拉伯语常用标点也应作为自然断句点,避免脚本文本和 edge-tts
# 返回的字幕停顿边界不一致,导致后续逐行匹配失败。
"،",
"؛",
"؟",
]
TASK_STATE_FAILED = -1
TASK_STATE_COMPLETE = 1
TASK_STATE_PROCESSING = 4
FILE_TYPE_VIDEOS = ["mp4", "mov", "mkv", "webm"]
FILE_TYPE_IMAGES = ["jpg", "jpeg", "png", "bmp"]