autoUpload/examples/upload_video_to_wechat.py

40 lines
1.6 KiB
Python
Raw Normal View History

# 在文件开头添加以下代码(在原导入语句之前)
2025-09-08 09:32:45 +08:00
import sys
import os
# 获取当前脚本所在目录
current_dir = os.path.dirname(os.path.abspath(__file__))
# 项目根目录是当前目录的上一级因为examples目录和conf.py同级
project_root = os.path.dirname(current_dir)
# 将项目根目录添加到系统路径
sys.path.append(project_root)
import asyncio
from pathlib import Path
2025-09-08 09:32:45 +08:00
from conf import BASE_DIR
2025-09-08 09:32:45 +08:00
from uploader.wechat_public_uploader.main import wechat_setup, WechatVideo
from utils.files_times import generate_schedule_time_next_day, get_title_and_hashtags
2025-09-08 09:32:45 +08:00
if __name__ == '__main__':
filepath = Path(BASE_DIR) / "videos"
account_file = Path(BASE_DIR / "cookies" / "wechat_uploader" / "account.json")
folder_path = Path(filepath)
# get video files from folder
files = list(folder_path.glob("*.mp4"))
file_num = len(files)
publish_datetimes = generate_schedule_time_next_day(file_num, 1, daily_times=[16])
cookie_setup = asyncio.run(wechat_setup(account_file, handle=True))
for index, file in enumerate(files):
title, tags = get_title_and_hashtags(str(file))
thumbnail_path = file.with_suffix('.png')
print(f"video_file_name{file}")
print(f"video_title{title}")
print(f"video_hashtag{tags}")
if thumbnail_path.exists():
print(f"thumbnail_file_name{thumbnail_path}")
app = WechatVideo(title, file, tags, publish_datetimes[index], account_file, thumbnail_path)
else:
app = WechatVideo(title, file, tags, publish_datetimes[index], account_file)
asyncio.run(app.main(), debug=False)
2025-09-08 09:32:45 +08:00