fix(tiktok): 缩短文件名长度

This commit is contained in:
imgyh 2023-03-28 22:11:31 +08:00
parent 47b7662a66
commit 01fbd743f8

View File

@ -47,8 +47,8 @@ class Utils(object):
result = re.findall(match, filenamestr)
result = "".join(result).strip()
if len(result) > 80:
result = result[:80]
if len(result) > 20:
result = result[:20]
# 去除前后空格
return result