Merge branch 'jxxghp:v2' into v2

This commit is contained in:
Seed680
2026-03-03 14:13:07 +08:00
committed by GitHub
23 changed files with 3115 additions and 34 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ class MetaVideo(MetaBase):
self.type = MediaType.TV
return
# 全名为Season xx 及 Sxx 直接返回
season_full_res = re.search(r"^Season\s+(\d{1,3})$|^S(\d{1,3})$", title)
season_full_res = re.search(r"^(?:Season\s+|S)(\d{1,3})$", title, re.IGNORECASE)
if season_full_res:
self.type = MediaType.TV
season = season_full_res.group(1)