We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d9893 commit 4374e43Copy full SHA for 4374e43
javsp/avid.py
@@ -80,6 +80,10 @@ def get_id(filepath_str: str) -> str:
80
return match.group(1)
81
# 尝试匹配东热n, k系列
82
match = re.search(r'(N\d{4}|K\d{4})', norm, re.I)
83
+ if match:
84
+ return match.group(1)
85
+ # 尝试匹配R18-XXX的番号
86
+ match = re.search(r'R18-?\d{3}', norm, re.I)
87
if match:
88
89
# 尝试匹配纯数字番号(无码影片)
0 commit comments