python 制作一个 VIP 视频解析器
废话不多说,直接上代码:from tkinter import *
import webbrowser
class Application(Tk):
def __init__(self):
super().__init__()
# 设置窗口
self.title('VIP 视频解析器')
self.geometry('400x200')
self.init_widgets()
# 变量
self.lines = {
"线路1": "https://okjx.cc/?url={}",
"线路2": "https://jx.618g.com/?url={}",
"线路3": "https://z1.m1907.cn/?jx={}",
"线路4": "https://jx.ab33.top/vip/?url={}",
"线路5": "https://api.653520.top/vip/?url=",
"线路6": "https://jx.000180.top/jx/?url={}",
"线路7": "https://jx.km58.top/58ds/?url={}",
"线路8": "https://www.1717yun.com/jx/ty.php?url={}"
}
self.now_line = "线路1"
self.now_line_number = 1
def init_widgets(self):
label = Label(self, text='请输入 VIP 视频的链接:', font=('微软雅黑', 14))
label.place(relx=0.2, rely=0.113, relwidth=0.563, relheight=0.117)
self.url_entry = Entry(self, font=('微软雅黑', 12))
self.url_entry.place(relx=0.22, rely=0.3, relwidth=0.763, relheight=0.174)
self.line_var = StringVar(value='线路1')
line_button = Button(self, textvariable=self.line_var, command=self.switch_line)
line_button.place(relx=0.02, rely=0.3, relwidth=0.183, relheight=0.169)
play_button = Button(self, text='播放', command=self.play_video)
play_button.place(relx=0.32, rely=0.601, relwidth=0.263, relheight=0.23)
def switch_line(self):
line_list = list(self.lines.keys())
self.now_line_number += 1
self.now_line_number = 0 if self.now_line_number >= len(line_list) else self.now_line_number
self.now_line = line_list
self.line_var.set(self.now_line)
def play_video(self):
video_url = self.lines.format(self.url_entry.get())
webbrowser.open(video_url)
if __name__ == "__main__":
app = Application()
app.mainloop()
效果:
如果想看教程的话,看一关注一下我的公众号,
如果想要 exe 文件的话,可以关注我的公众号并回复 VIP 视频解析器exe即可。
扫一下下面的二维码就可以关注我的公众号。
https://mp.weixin.qq.com/mp/qrcode?scene=10000004&size=102&__biz=MzUyMDk4NjkzOQ==&mid=2247483697&idx=1&sn=58b39e7206743b88a66f8dde5f8b9c1d&send_time= 支持支持{:5_106:} 支持 加油 好 支持 这个解析器对哪些网站链接支持啊?{:5_94:} 大佬牛逼! {:5_108:} Yoromi 发表于 2021-2-10 07:57
这个解析器对哪些网站链接支持啊?
对爱奇艺,腾讯视频,优酷等都行 好!
我tm直接拍手称好 优雅地推广公众号。
谢谢分享 谢谢楼主,楼主厉害{:10_256:} 为什么会有奇怪的网站 可以啊!加油加油冲冲冲!{:10_256:} wyh1sc 发表于 2021-2-12 13:48
为什么会有奇怪的网站
那些网站才是负责破解的 lixiangyv 发表于 2021-2-10 09:11
对爱奇艺,腾讯视频,优酷等都行
过来领教程
这个怎么用啊? 三刀流.索隆 发表于 2021-2-15 15:16
这个怎么用啊?
将需要 VIP 才可以播放的视频的链接输入到输入框中,点击播放就可以播放了 牛
页:
[1]
2