Python3利用网页接口制作一个免费的VIP视频播放软件

感谢Python大神Jack_cui给的思路http://blog.csdn.net/c406495762 


运行平台: Windows 
Python版本: Python3.x 

IDE: Pycharm

1.想看最新的电影却没钱开会员怎么办

没有会员,想在线观看或下载爱奇艺、PPTV、优酷、网易公开课、腾讯视频、搜狐视频、乐视、土豆、A站、B站等主流视频网站的VIP视频

Python3利用网页接口制作一个免费的VIP视频播放软件_第1张图片


对于我这样的人来说,使我进步!


2.软件下载地址

链接:https://pan.baidu.com/s/1Zm-dWKipnupuPDN99Ut1aQ 密码:1adt

Python3利用网页接口制作一个免费的VIP视频播放软件_第2张图片

下载软件后杀毒软件可能会报毒,具体为什么不知道,关了杀毒软件用就行

3.软件使用方法

Python3利用网页接口制作一个免费的VIP视频播放软件_第3张图片

打开软件是这样的,你可以复制想看的视频链接到框中

Python3利用网页接口制作一个免费的VIP视频播放软件_第4张图片

Python3利用网页接口制作一个免费的VIP视频播放软件_第5张图片

点击“播放VIP视频”即可观看,效果如下

Python3利用网页接口制作一个免费的VIP视频播放软件_第6张图片

如果不能观看则点击另外一个视频通道,再次选择播放

Python3利用网页接口制作一个免费的VIP视频播放软件_第7张图片

4.源码分享


    
    
    
    
  1. #encoding=utf-8
  2. import tkinter
  3. import tkinter.messagebox
  4. import webbrowser
  5. def Button():
  6. a = 'http://www.a305.org/flv.php?url=' if varRadio.get() else 'http://www.82190555.com/video.php?url='
  7. b = entry_movie_link.get()
  8. webbrowser.open(a+b)
  9. def qk():
  10. entry_movie_link.delete( 0, 'end')
  11. def openaqy():
  12. webbrowser.open( 'http://www.iqiyi.com')
  13. def opentx():
  14. webbrowser.open( 'http://v.qq.com')
  15. def openyq():
  16. webbrowser.open( 'http://www.youku.com/')
  17. def about():
  18. abc= '''
  19. 经过测试爱奇艺、优酷、腾讯的VIP视频可以播放
  20. 链接格式为
  21. http://www.iqiyi.com/v_19rrb2u62s.html?fc=82992814760eeac6
  22. '''
  23. tkinter.messagebox.showinfo(title= '帮助文件', message=abc)
  24. def zzxx():
  25. msg= '''
  26. 作者:齐泽文
  27. Python爬虫代码分享群:497719008
  28. '''
  29. tkinter.messagebox.showinfo(title= '联系方式', message=msg)
  30. if __name__ == '__main__':
  31. root=tkinter.Tk()
  32. root.title( 'VIP视频破解软件')
  33. root[ 'width']= 500
  34. root[ 'height']= 300
  35. menubar = tkinter.Menu(root)
  36. helpmenu = tkinter.Menu(menubar, tearoff= 0)
  37. helpmenu.add_command(label= '帮助文档', command=about)
  38. helpmenu.add_command(label= '作者信息', command=zzxx)
  39. menubar.add_cascade(label= '帮助(H)', menu=helpmenu)
  40. root.config(menu=menubar)
  41. varentry1= tkinter.StringVar(value= '')
  42. lab_movie_gallery=tkinter.Label(root, text= '视频播放通道')
  43. lab_movie_gallery.place(x= 20,y= 20,width= 100,height= 20)
  44. varRadio=tkinter.IntVar(value= 1)
  45. Radiobutton1_movie_gallery=tkinter.Radiobutton(root,variable=varRadio,value= 0,text= '视频通道1')
  46. Radiobutton2_movie_gallery = tkinter.Radiobutton(root, variable=varRadio, value= 1, text= '视频通道2')
  47. Radiobutton1_movie_gallery.place(x= 130,y= 20,width= 100,height= 20)
  48. Radiobutton2_movie_gallery.place(x= 250, y= 20, width= 100, height= 20)
  49. varentry2=tkinter.StringVar(value= 'https://v.qq.com/x/cover/u4s2zisluorvkgt.html')
  50. lab_movie_link = tkinter.Label(root, text= '视频播放链接')
  51. lab_movie_link.place(x= 20, y= 60, width= 100, height= 20)
  52. entry_movie_link = tkinter.Entry(root, textvariable=varentry2)
  53. entry_movie_link.place(x= 130, y= 60, width= 300, height= 20)
  54. button_movie_link=tkinter.Button(root,text= '清空',command=qk)
  55. button_movie_link.place(x= 440,y= 60,width= 30,height= 20)
  56. lab_remind = tkinter.Label(root, text= '将视频链接复制到框内,点击播放VIP视频')
  57. lab_remind.place(x= 50, y= 90, width= 400, height= 20)
  58. varbutton=tkinter.StringVar
  59. button_movie= tkinter.Button(root, text= '播放VIP视频', command=Button)
  60. button_movie.place(x= 140, y= 120, width= 200, height= 60)
  61. button_movie1 = tkinter.Button(root, text= '爱奇艺', command=openaqy)
  62. button_movie1.place(x= 60, y= 200, width= 100, height= 60)
  63. button_movie2 = tkinter.Button(root, text= '腾讯视频', command=opentx)
  64. button_movie2.place(x= 180, y= 200, width= 100, height= 60)
  65. button_movie3 = tkinter.Button(root, text= '优酷视频', command=openyq)
  66. button_movie3.place(x= 300, y= 200, width= 100, height= 60)
  67. root.mainloop()

视频所使用的接口在Button()中

学到的同学请关注我哦!

你可能感兴趣的:(Python3利用网页接口制作一个免费的VIP视频播放软件)