Github地址:https://github.com/cmdch2017/GenerateAndAutoupload
https://github.com/cmdch2017/GenerateAndAutoupload/releases/download/v1.0.1/v1.0.1.zip
conf.py 这里配置了chrome浏览器的启动位置,你的项目一定要安装chrome C:\Program Files\Google\Chrome\Application\chrome.exe
该项目在上面的项目基础上增加和删除了一些功能旨在自动生成视频并发布视频到各个社交媒体平台并打包程序
默认当天的日期,网上找到的素材按照黏贴到空白处点击保存按钮,然后点击生成选定日期视频,确保生成cookies后,再点击一键上传即可。
生成的视频如下所示:
当然你也不一定需要用到生成视频的功能,只需要批量上传,那你就点击当日文件夹按钮
pip install -r requirements.txt playwright install chromium firefox
非程序员,新手级教程
The project for my own project extracted, my release strategy is timed release (released a day in advance), so the release part of the event are used for the next day time!
If you need to release it immediately, you can study the source code or ask me questions.
如果你有需求立即发布,可自行研究源码或者向我提问
filepath 本地视频目录,目录包含(filepath Local video directory containing)
举例(for example):
file:2023-08-24_16-29-52 - 这位勇敢的男子为了心爱之人每天坚守 .mp4
meta_file:2023-08-24_16-29-52 - 这位勇敢的男子为了心爱之人每天坚守 .txt
meta_file 内容(content):
这位勇敢的男子为了心爱之人每天坚守 🥺❤️🩹 #坚持不懈 #爱情执着 #奋斗使者 #短视频
LOCAL_CHROME_PATH
(在douyin、视频号 tiktok可能出现chromium 不兼容的各种问题,建议设置本地的chrome)examples
文件夹中有各种示例代码python cli_main.py [options]
查看详细的参数说明使用:
python cli_main.py -h
usage: cli_main.py [-h] platform account_name action ... Upload video to multiple social-media. positional arguments: platform Choose social-media platform: douyin tencent tiktok account_name Account name for the platform: xiaoA action Choose action upload upload operation login login operation watch watch operation options: -h, --help show this help message and exit
示例
python cli_main.py douyin test login douyin平台,账号名为test,动作为login python cli_main.py douyin test upload "C:\Users\duperdog\Videos\2023-11-07_05-27-44 - 这位少女如梦中仙... .mp4" -pt 0 douyin平台, 账号名为test, 动作为upload, 视频文件(需对应的meta文件,详见上), 发布方式(pt):0 立即发布 python cli_main.py douyin test upload "C:\Users\superdog\Videos\2023-11-07_05-27-44 - 这位少女如梦中仙... .mp4" -pt 1 -t "2024-6-14 12:00" douyin平台, 账号名为test, 动作为upload, 视频文件, 发布方式(pt):1 定时发布, 发布时间(t): 2024-6-14 12:00
使用playwright模拟浏览器行为
抖音前端实现,诸多css class id 均为随机数,故项目中locator多采用相对定位,而非固定定位
其他部分解释:
douyin_setup handle 参数为True,为手动获取cookie False 则是校验cookie有效性 generate_schedule_time_next_day 默认从第二天开始(此举为避免选择时间的意外错误) 参数解释: - total_videos 本次上传视频个数(我调整了上限为10) - videos_per_day 每日上传视频数量(我调整了上限为10) - daily_times 视频发布时间 默认10、11、12、13、14、15、16、17、18、19点 - start_days 从第N天开始
2023年12月15日补充:使用chromium可能会出现无法识别视频封面图片的情况
解决方案:
- 下载chrome
- 找到chrome的安装目录
- 将本地chrome 路径conf文件中 LOCAL_CHROME_PATH = “xxx/xxx/chrome.exe”
参考项目:
使用playwright模拟浏览器行为
其他部分解释:
参考上面douyin_setup 配置
该实现,借助biliup的biliup-rs,再次感谢。
biliup.exe -u account.json login
选项你喜欢的登录方式bilibili cookie 长期有效(至少我运行2年以来是这样的) 其他平台 诸如linux mac 服务器运行 请自行研究
参考项目:
打包前你的项目结构
修改main.spec,其中pathex是你项目放的位置,我的项目放到了D:\Demos\social-auto-upload-main
点击生成exe.bat,这个时候生成了dist文件夹,如上图所示,然后你能放dist到任意一个目录,然后如下图所示的exe文件同一目录下放这些文件。项目打包后的成品大概这个样子,其中uploader文件夹里放account.json,postcards/2024-08-01/*.mp4(当天日期)放视频,source下放texts.json(文字转视频中文字存放的位置)
参考项目:
ffmpeg安装教程https://www.cnblogs.com/wwwwariana/p/18191233