摘要: # 创建新线程 import time import threading def f(x): """任务""" print(x) time.sleep(3) print(x) for i in range(5): threading.Thread(target=f, args=(i,)).start 阅读全文
posted @ 2022-05-11 18:28 cliter 阅读(101) 评论(0) 推荐(0) 编辑
摘要: extention_name = input("输入文件名(可拖动):").split(".")[-1] 阅读全文
posted @ 2022-05-11 18:25 cliter 阅读(94) 评论(0) 推荐(0) 编辑
摘要: ffmpeg.exe -f concat -safe 0 -i .\videos_list.txt -c copy output.flv (-safe 要在 -i 前) 阅读全文
posted @ 2022-05-11 18:23 cliter 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 文件名 HideRun.vbs CreateObject("WScript.Shell").Run "D:\Programs\aria2\aria2c.exe --conf-path=aria2.conf",0 启动文件夹路径 C:\Users\你的用户名\AppData\Roaming\Micro 阅读全文
posted @ 2022-05-11 18:20 cliter 阅读(399) 评论(0) 推荐(0) 编辑