某视频学习平台视频自动化自动播放

声明

本项目仅做交流与测试,请勿用于非法途径


Auto_playV5.2 update log

python 3.6 +
chrome 78 +
windows 10 +

功能实现

  • 多用户学习无忧
  • 账号安全性优化
  • 视频播放智能判断与播放控制优化

XQYXrT.jpg


Auto_playV1 old_log:

重置与优化,删除冗余,优化播放控制,部分内容未测试
自动化测试浏览器: 谷歌73.0.3683.86(32位)
python 3.7(64bit) 64位系统适配

功能实现

1.全自动化登录与课程学习
2.已实现多用户登录学习
3.已实现多参数修改
4.已实现多线程播放
5.优化使用逻辑

提供程序入口代码,详细内容见GitHub仓库:点击跳转

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
if __name__ == '__main__':
cfg1 = r"./auto.ini"
conf = configparser.ConfigParser()
conf.read(cfg1, encoding='utf-8')

# 默认的课程顺序,来源:https://k.cnki.net/NewTheme/Index/288
mystudy = [
"https://k.cnki.net/CInfo/Index/15088",
"https://k.cnki.net/CInfo/Index/15013",
"https://k.cnki.net/CInfo/Index/14994",
"https://k.cnki.net/CInfo/Index/14902",
"https://k.cnki.net/CInfo/Index/14865",
"https://k.cnki.net/CInfo/Index/14824",
"https://k.cnki.net/CInfo/Index/14760",
"https://k.cnki.net/CInfo/Index/14640",
"https://k.cnki.net/CInfo/Index/14428",
"https://k.cnki.net/CInfo/Index/14350",
"https://k.cnki.net/CInfo/Index/14320",
"https://k.cnki.net/CInfo/Index/14207",
"https://k.cnki.net/CInfo/Index/14148",
"https://k.cnki.net/CInfo/Index/13947"
]

all_user = int(conf.get("default", "all_user"))
print(f'获取到{str(all_user)}个用户')

a_us = 0
for user in range(1, all_user+1):
print(f"******* 第 {str(user)} 用户开始学习*******")
Thread(target=thering_, args=(user,)).start()
print(f"\n线程{user}启动成功...")
a_us += 1
time.sleep(2)

关于后续

暂不提供可执行文件,有能力自行编译👍
能用就行