docs(readme): 更新文档

This commit is contained in:
imgyh 2023-03-28 21:37:47 +08:00
parent 8ce13c0d72
commit 0314e2520d
2 changed files with 19 additions and 19 deletions

View File

@ -249,24 +249,24 @@ python TikTokCommand.py -h
``` ```
windows用户: windows用户:
.\TikTokCommand.exe -C True \ .\TikTokCommand.exe -C True `
-l https://live.douyin.com/759547612580 \ -l https://live.douyin.com/759547612580 `
-l https://v.douyin.com/BugmVVD/ \ -l https://v.douyin.com/BugmVVD/ `
-l https://v.douyin.com/BugrFTN/ \ -l https://v.douyin.com/BugrFTN/ `
-l https://v.douyin.com/B72pdU5/ \ -l https://v.douyin.com/B72pdU5/ `
-l https://v.douyin.com/B72QgDw/ \ -l https://v.douyin.com/B72QgDw/ `
-l https://v.douyin.com/AJp8D3f/ \ -l https://v.douyin.com/AJp8D3f/ `
-l https://v.douyin.com/B38oovu/ \ -l https://v.douyin.com/B38oovu/ `
-l https://v.douyin.com/S6YMNXs/ \ -l https://v.douyin.com/S6YMNXs/ `
-p /path/to/downdir \ -p /path/to/downdir `
-M post \ -M post `
-M like \ -M like `
-M mix \ -M mix `
--postnumber 5 \ --postnumber 5 `
--likenumber 5 \ --likenumber 5 `
--allmixnumber 1 \ --allmixnumber 1 `
--mixnumber 5 \ --mixnumber 5 `
--musicnumber 5 \ --musicnumber 5 `
--cookie "msToken=xxx; ttwid=xxx; odin_tt=xxx; passport_csrf_token=xxx; sid_guard=xxx;" --cookie "msToken=xxx; ttwid=xxx; odin_tt=xxx; passport_csrf_token=xxx; sid_guard=xxx;"
linux与mac用户: linux与mac用户:

View File

@ -42,7 +42,7 @@ class Utils(object):
替换非法字符缩短字符长度使其能成为文件名 替换非法字符缩短字符长度使其能成为文件名
""" """
# 匹配 汉字 字母 数字 空格 # 匹配 汉字 字母 数字 空格
match = "([0-9A-Za-z\u4e00-\u9fa5]+)" match = "([0-9A-Za-z\u4e00-\u9fa5 #_-]+)"
result = re.findall(match, filenamestr) result = re.findall(match, filenamestr)