fix: improve subtitle parsing and matching

This commit is contained in:
jxxghp
2026-06-10 00:54:58 +08:00
parent 0f468f67c1
commit fa06d5d861
5 changed files with 430 additions and 6 deletions
+6
View File
@@ -288,6 +288,12 @@ class SubtitleInfo(BaseModel):
subtitle_id: Optional[str] = None
# 下载文件名
file_name: Optional[str] = None
# 识别元数据
meta_info: Optional[MetaInfo] = None
# SxxExx
season_episode: Optional[str] = None
# 集列表
episode_list: Optional[List[int]] = Field(default_factory=list)
class Context(BaseModel):