@@ -17,8 +17,8 @@ def job_douyin_data():
# 设置上午10点运行任务
schedule.every().day.at("14:00").do(job_douyin_data)
-# 设置下午4点运行任务
-schedule.every().day.at("10:50").do(job_video_stitching)
+# 设置上午4点运行任务
+schedule.every().day.at("10:55").do(job_video_stitching)
while True:
schedule.run_pending()