吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 21575|回复: 171
上一主题 下一主题
收起左侧

[Python 转载] 快手视频下载,指定作者批量下载无水印

     关闭 [复制链接]
跳转到指定楼层
楼主
kololi 发表于 2022-7-28 17:41 回帖奖励
本帖最后由 kololi 于 2022-7-28 17:44 编辑


本作品代码参考了如下作品:
https://www.52pojie.cn/forum.php?mod=viewthread&tid=1631965

食用方法:第一步,获得视频作者ID


第二步,粘贴ID,到对话框,先获取,再下载


第三步,下载好的文件位于程序所在目录下,有个ksdownloads文件夹下,以作者名命名的文件夹内。

问题:
1 目前是单线程,较大文件下载会慢,等待时间略长并且程序无提示,期待改进
2 下载未提示下载的是第几个文件

源码如下
[Python] 纯文本查看 复制代码
# -*- coding:utf-8 -*-
# @FileName  :mykuaishouUi.py
# @AuTho[url=home.php?mod=space&uid=686208]r[/url]    :kololi@52pojie
import os
import re
import subprocess
import threading
import time
import tkinter as tk
import tkinter.font as tkFont
import warnings
from datetime import datetime

import requests

LOG_LINE_NUM = 0


class App:
    def __init__(self, root):
        self.initUi(root)
        self.initData()

    def initData(self):
        self.urls = 'https://www.kuaishou.com/profile/3xqsuf66a4m3ujy'
        self.pcursor = ''
        self.nickname = ''
        self.datas = []
        self.status_download = True
        self.tag = 'odd'
        self.base_url = 'https://www.kuaishou.com/graphql'
        self.session = requests.Session()
        self.session.headers.update({
                                        'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.60 Safari/537.36'})
        self.starurl = 'https://www.kuaishou.com/brilliant'
        self.postdata = {
            "operationName span>": "visionProfilePhotoList",  # 对你没看错,就是有个”span>“
            "variables": {"userId": "3xn6jcvx7j3g2d2", "pcursor": "", "page": "profile"},
            "query": "fragment photoContent on PhotoEntity {\n  id\n  duration\n  caption\n  likeCount\n  viewCount\n  realLikeCount\n  coverUrl\n  photoUrl\n  photoH265Url\n  manifest\n  manifestH265\n  videoResource\n  coverUrls {\n    url\n    __typename\n  }\n  timestamp\n  expTag\n  animatedCoverUrl\n  distance\n  videoRatio\n  liked\n  stereoType\n  profileUserTopPhoto\n  __typename\n}\n\nfragment feedContent on Feed {\n  type\n  author {\n    id\n    name\n    headerUrl\n    following\n    headerUrls {\n      url\n      __typename\n    }\n    __typename\n  }\n  photo {\n    ...photoContent\n    __typename\n  }\n  canAddComment\n  llsid\n  status\n  currentPcursor\n  __typename\n}\n\nquery visionProfilePhotoList($pcursor: String, $userId: String, $page: String, $webPageArea: String) {\n  visionProfilePhotoList(pcursor: $pcursor, userId: $userId, page: $page, webPageArea: $webPageArea) {\n    result\n    llsid\n    webPageArea\n    feeds {\n      ...feedContent\n      __typename\n    }\n    hostName\n    pcursor\n    __typename\n  }\n}\n"
        }

    def initUi(self, root):
        # setting title
        root.title("KSDownloader kololi@52pojie")
        # setting window size
        width = 897
        height = 533
        screenwidth = root.winfo_screenwidth()
        screenheight = root.winfo_screenheight()
        alignstr = '%dx%d+%d+%d' % (width, height, (screenwidth - width) / 2, (screenheight - height) / 2)
        root.geometry(alignstr)
        root.resizable(width=False, height=False)

        ft = tkFont.Font(family='宋体', size=10)
        GLabel_515 = tk.Label(root)
        GLabel_515["font"] = ft
        GLabel_515["justify"] = "center"
        GLabel_515["text"] = "作者ID"
        GLabel_515.place(x=20, y=10, width=47, height=30)

        self.GLineEdit_508 = tk.Entry(root)
        self.GLineEdit_508["borderwidth"] = "1px"
        self.GLineEdit_508["justify"] = "center"
        self.GLineEdit_508["text"] = "path"
        self.GLineEdit_508['state'] = 'readonly'
        self.GLineEdit_508.place(x=90, y=50, width=610, height=30)

        self.GLineEdit_332 = tk.Entry(root)
        self.GLineEdit_332["borderwidth"] = "1px"
        self.GLineEdit_332["justify"] = "center"
        self.GLineEdit_332["text"] = "url"
        self.GLineEdit_332.place(x=90, y=10, width=231, height=30)

        self.GButton_333 = tk.Button(root)
        self.GButton_333["justify"] = "center"
        self.GButton_333["text"] = "开始下载"
        self.GButton_333.place(x=710, y=50, width=90, height=30)
        self.GButton_333['state'] = 'disable'
        self.GButton_333["command"] = self.GButton_333_command

        ft2 = tkFont.Font(family='宋体', size=12)
        self.GLineEdit_428 = tk.Text(root)
        self.GLineEdit_428["borderwidth"] = "1px"
        self.GLineEdit_428["font"] = ft2
        self.GLineEdit_428.place(x=10, y=90, width=881, height=427)

        self.GButton_676 = tk.Button(root)
        self.GButton_676["font"] = ft
        self.GButton_676["justify"] = "center"
        self.GButton_676["text"] = "停止下载"
        self.GButton_676['state'] = 'disable'
        self.GButton_676.place(x=810, y=50, width=74, height=30)
        self.GButton_676["command"] = self.GButton_676_command

        GButton_701 = tk.Button(root)
        GButton_701["font"] = ft
        GButton_701["justify"] = "center"
        GButton_701["text"] = "获取信息"
        GButton_701.place(x=330, y=10, width=70, height=30)
        GButton_701["command"] = self.GButton_701_command

        GLabel_100 = tk.Label(root)
        GLabel_100["font"] = ft
        GLabel_100["justify"] = "center"
        GLabel_100["text"] = "昵称"
        GLabel_100.place(x=410, y=10, width=43, height=30)

        GLabel_1 = tk.Label(root)
        GLabel_1["font"] = ft
        GLabel_1["justify"] = "center"
        GLabel_1["text"] = "条作品"
        GLabel_1.place(x=790, y=10, width=76, height=30)

        self.GLineEdit_690 = tk.Entry(root)
        self.GLineEdit_690["borderwidth"] = "1px"
        self.GLineEdit_690["font"] = ft
        self.GLineEdit_690["justify"] = "center"
        self.GLineEdit_690["text"] = "条作品"
        self.GLineEdit_690['state'] = 'readonly'
        self.GLineEdit_690.place(x=710, y=10, width=90, height=30)

        self.GLineEdit_281 = tk.Entry(root)
        self.GLineEdit_281["borderwidth"] = "1px"
        self.GLineEdit_281["font"] = ft
        self.GLineEdit_281["fg"] = "#333333"
        self.GLineEdit_281["justify"] = "center"
        self.GLineEdit_281["text"] = "昵称"
        self.GLineEdit_281['state'] = 'readonly'
        self.GLineEdit_281.place(x=460, y=10, width=240, height=31)

        GButton_55 = tk.Button(root)
        GButton_55["bg"] = "#efefef"
        GButton_55["font"] = ft
        GButton_55["fg"] = "#000000"
        GButton_55["justify"] = "center"
        GButton_55["text"] = "保存路径"
        GButton_55["relief"] = "groove"
        GButton_55.place(x=10, y=50, width=70, height=30)
        GButton_55["command"] = self.GButton_55_command

    def GButton_55_command(self):  # 打开文件夹
        path = self.GLineEdit_508.get()
        if path:
            self.open_fp(path)

    def GButton_701_command(self):  # 获取信息
        authorId = self.GLineEdit_332.get()
        self.status_download = True
        # self._log(authorId)
        if authorId:
            self.pcursor = ''
            self.postdata['variables']['userId'] = authorId
            self._log(f'--------------开始查询,请稍等-----------')
            obj1 = threading.Thread(target=self.analysis, args=({False}))
            obj1.setDaemon(True)
            obj1.start()
        else:
            self._log("请输入作者ID")

    def GButton_676_command(self):  # 停止下载
        self.status_download = False
        self.GButton_676['state'] = 'disable'

    def GButton_333_command(self):  # 开始下载
        self.status_download = True
        self.GButton_333['state'] = 'disable'
        self.GButton_676['state'] = 'active'
        self.pcursor = ''
        obj1 = threading.Thread(target=self.analysis, args=({True}))
        obj1.setDaemon(True)
        obj1.start()

    def analysis(self, flag):
        print(flag)
        page_num = 0
        len_feeds = 0
        nickname = '未找到该ID用户或者暂未发布作品'
        self._requests('get', self.starurl, decode_level=3)
        self.pcursor == ''
        while self.status_download:
            if self.pcursor == 'no_more':
                if flag:
                    self._log(f'--------------已全部完成下载!-----------')
                else:
                    self._log(f'--------------查询完成!-----------')
                break
            elif not self.status_download:
                self._log(f'--------------已停止下载!-----while------')
                break
            else:
                page_num += 1
                self.postdata['variables']['pcursor'] = self.pcursor
                json_data = self._requests('post', self.base_url, decode_level=2, json=self.postdata)
                if not json_data:
                    self._log(f'获取视频列表失败')
                    break
                feeds = json_data['data']['visionProfilePhotoList']['feeds']
                if feeds and len(feeds) > 0:
                    # 下一页 链接pcursor导入data
                    self.pcursor = json_data['data']['visionProfilePhotoList']['pcursor']
                    if flag:
                        self._log(f'……………………………………开始下载第{page_num}页数据……………………………………')
                        for feed in feeds:
                            if not self.status_download:
                                self._log(f'--------------已停止下载!--feed---------')
                                break
                            self.download_photoUrl(feed)
                    else:
                        len_feeds += len(feeds)
                        nickname = feeds[0]['author']['name'] if feeds[0]['author']['name'] else "未知"
                        self.GButton_333['state'] = 'active'
                else:
                    if page_num == 1:
                        self._log("未找到该ID用户或该用户暂未发布作品")
                    break
        if not flag:
            filepath = os.getcwd() + '\\' + 'ksdownloads' + '\\' + nickname
            self.GLineEdit_690['state'] = 'normal'
            self.GLineEdit_281['state'] = 'normal'
            self.GLineEdit_508['state'] = 'normal'
            self.GLineEdit_508.delete(0, 'end')
            self.GLineEdit_281.delete(0, 'end')
            self.GLineEdit_690.delete(0, 'end')
            self.GLineEdit_690.insert(0, f'{len_feeds}')
            self.GLineEdit_281.insert(0, f'{nickname}')
            self.GLineEdit_508.insert(0, f'{filepath}')
            self.GLineEdit_690['state'] = 'readonly'
            self.GLineEdit_281['state'] = 'readonly'
            self.GLineEdit_508['state'] = 'readonly'

    def download_photoUrl(self, feed):
        try:
            filepath = os.getcwd() + '/' + 'ksdownloads' + '/' + feed['author']['name'] if feed['author'][
                'name'] else os.getcwd() + '/' + 'ksdownloads' + '/' + '未知用户'
            self.nickname = feed['author']['name'] if feed['author']['name'] else "未知"
            caption = feed['photo']['caption']  # title
            photoUrl = feed['photo']['photoUrl']  # video link
            caption = re.sub('[ \\/:*?"<>|\n\t]', '', caption)
            likeCount = feed['photo']['likeCount']
            viewCount = feed['photo']['viewCount']
            self._log(f'{caption} {viewCount}次观看 {likeCount}人喜欢')
            caption = caption[:28] if len(caption) > 28 else caption
            if caption:
                video_data = self._requests('get', photoUrl, decode_level=3).content
                time_ns = time.time()
                self.save_video(os.path.normpath(filepath), caption + '_' + str(time_ns) + '.mp4', video_data, photoUrl)
        except Exception as e:
            self._log(f'错误:{e},获取数据失败,请检查主播ID是否正确,也可能cookies已过期!')

    def save_video(self, path, filename, video_data, url):
        if not os.path.exists(path):
            os.makedirs(path)
        with open(os.path.normpath(os.path.join(path, filename)), 'wb') as f:
            f.write(video_data)
            now_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
            self._log(f'  状态:[下载完成]')
            self.datas.append([now_time, filename, path, url])

    def open_fp(self, fp):
        """
        打开文件或文件夹
        :param fp: 需要打开的文件或文件夹路径
        """
        import platform
        systemType: str = platform.platform()  # 获取系统类型
        if 'mac' in systemType:  # 判断以下当前系统类型
            fp: str = fp.replace("\\", "/")  # mac系统下,遇到`\\`让路径打不开,不清楚为什么哈,觉得没必要的话自己可以删掉啦,18行那条也是
            subprocess.call(["open", fp])
        else:
            fp: str = fp.replace("/", "\\")  # win系统下,有时`/`让路径打不开
            try:
                os.startfile(fp)
            except:
                self._log("文件还未下载")

    def _requests(self, method, url, decode_level=1, retry=0, timeout=15, **kwargs):
        if method in ["get", "post"]:
            for _ in range(retry + 1):
                try:
                    warnings.filterwarnings('ignore')
                    response = getattr(self.session, method)(url, timeout=timeout, verify=False, **kwargs)
                    return response.text if decode_level == 1 else response.json() if decode_level == 2 else response
                except Exception as e:
                    self._log(e)

        return None

    def _log(self, logmsg):
        global LOG_LINE_NUM
        current_time = self.get_current_time()
        logmsg_in = str(current_time) + " " + str(logmsg) + "\n"  # 换行
        self.GLineEdit_428.tag_config("even", background='#e0e0e0')
        self.GLineEdit_428.tag_config("odd", background='#ffffff')
        self.tag = 'odd' if self.tag == 'even' else 'even'
        if LOG_LINE_NUM <= 20:

            self.GLineEdit_428.insert('end', logmsg_in, self.tag)
            LOG_LINE_NUM = LOG_LINE_NUM + 1
        else:
            self.GLineEdit_428.delete(1.0, 2.0)
            self.GLineEdit_428.insert('end', logmsg_in, self.tag)

    def get_current_time(self):
        current_time = time.strftime('%H:%M:%S', time.localtime(time.time()))
        return current_time


if __name__ == "__main__":
    root = tk.Tk()
    app = App(root)
    root.mainloop()


打包好的exe(win7x64+python3.8)下载
下载:https://wwz.lanzoub.com/iEVuw08jz5xg 密码:bqbf


免费评分

参与人数 33吾爱币 +30 热心值 +29 收起 理由
Joe_fly + 1 + 1 谢谢@Thanks!
zotoogo + 1 + 1 用心讨论,共获提升!
ruanjia + 1 + 1 谢谢@Thanks!
5201314www + 1 + 1 谢谢@Thanks!
UXV4DO + 1 + 1 谢谢@Thanks!
huguo002 + 1 + 1 我很赞同!可以,还能用!
刺猬仔 + 1 谢谢@Thanks!
tlksyl + 1 + 1 谢谢@Thanks!
macl5817 + 1 + 1 我很赞同!
hel4755 + 1 + 1 谢谢@Thanks!
ylym8888 + 1 老版本还可以用的啊!!
一只大黄瓜 + 1 + 1 谢谢@Thanks!
QuChen + 1 谢谢@Thanks!
seveny7 + 1 + 1 我很赞同!
varius + 1 我很赞同!
zhuwaihui + 1 谢谢@Thanks!
flameg + 1 + 1 谢谢@Thanks!
pjbl + 1 + 1 谢谢@Thanks!
paul2828 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
abudu1 + 1 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
8842123 + 1 + 1 能不能选择性的下载!!!
zerocsno1 + 1 + 1 谢谢@Thanks!
ronini + 1 + 1 谢谢@Thanks!
dltest + 1 + 1 我很赞同!
zrf1980 + 1 + 1 感谢发布原创作品,吾爱破解论坛因你更精彩!
neteast + 1 + 1 我很赞同!
wuyuguy + 1 + 1 我很赞同!
yanglinman + 1 谢谢@Thanks!
majindui + 1 + 1 我很赞同!
wanfon + 1 + 1 热心回复!
小小的石头13 + 1 + 1 我很赞同!
封诺 + 1 + 1 太厉害了,能出个抖音不
麦子1995 + 1 + 1 谢谢@Thanks!

查看全部评分

本帖被以下淘专辑推荐:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

来自 #
 楼主| kololi 发表于 2022-8-13 16:17 |楼主
官方已更新了验证策略,所以之前的自动获取cookie方法失效,导致程序功能丧失。
程序刚放出来的时候是好用的,只是用了一段时间失效了。


更新说明:
1.现改为手工粘贴cookie中的did=后边这部份至程序中,再获取信息进行下载。

2.为防止频繁验证,已经去掉了作者品数统计 。
3.下载文件命名改为作品名前增加了序号,作品名后增加了作品在系统的id编号
4.日志会显示下载的是第几个文件




下载:https://wwz.lanzoub.com/iMoYt09hpjta 密码:52pj


[Python] 纯文本查看 复制代码
# -*- coding:utf-8 -*-
# @ FileName  :mykuaishouUi.py
# @ author    :kololi@52pojie
import os
import re
import subprocess
import threading
import time
import tkinter as tk
import tkinter.font as tkFont
import warnings
from datetime import datetime

import requests

LOG_LINE_NUM = 0


class App:
    def __init__(self, root):
        self.initUi(root)
        self.initData()

    def initData(self):

        self.urls = 'https://www.kuaishou.com/profile/3xqsuf66a4m3ujy'
        self.pcursor = ''
        self.nickname = ''
        self.datas = []
        self.status_download = True
        self.tag = 'odd'
        self.base_url = 'https://www.kuaishou.com/graphql'
        self.session = requests.Session()

        self.starurl = 'https://www.kuaishou.com/brilliant'
        self.postdata ={
                        "operationName": "visionProfilePhotoList",
                        "variables": {
                            "userId": "3xhctssjc37ibrm",
                            "pcursor": "",
                            "page": "profile"
                        },
                        "query": "fragment photoContent on PhotoEntity {\n  id\n  duration\n  caption\n  likeCount\n  viewCount\n  realLikeCount\n  coverUrl\n  photoUrl\n  photoH265Url\n  manifest\n  manifestH265\n  videoResource\n  coverUrls {\n    url\n    __typename\n  }\n  timestamp\n  expTag\n  animatedCoverUrl\n  distance\n  videoRatio\n  liked\n  stereoType\n  profileUserTopPhoto\n  __typename\n}\n\nfragment feedContent on Feed {\n  type\n  author {\n    id\n    name\n    headerUrl\n    following\n    headerUrls {\n      url\n      __typename\n    }\n    __typename\n  }\n  photo {\n    ...photoContent\n    __typename\n  }\n  canAddComment\n  llsid\n  status\n  currentPcursor\n  __typename\n}\n\nquery visionProfilePhotoList($pcursor: String, $userId: String, $page: String, $webPageArea: String) {\n  visionProfilePhotoList(pcursor: $pcursor, userId: $userId, page: $page, webPageArea: $webPageArea) {\n    result\n    llsid\n    webPageArea\n    feeds {\n      ...feedContent\n      __typename\n    }\n    hostName\n    pcursor\n    __typename\n  }\n}\n"
                    }
    def initUi(self, root):
        # setting title
        root.title("KSDownloader kololi@52pojie")
        # setting window size
        width = 899
        height = 525
        screenwidth = root.winfo_screenwidth()
        screenheight = root.winfo_screenheight()
        alignstr = '%dx%d+%d+%d' % (width, height, (screenwidth - width) / 2, (screenheight - height) / 2)
        root.geometry(alignstr)
        root.resizable(width=False, height=False)

        ft = tkFont.Font(family='宋体', size=10)
        GLabel_515 = tk.Label(root)
        GLabel_515["font"] = ft
        GLabel_515["justify"] = "center"
        GLabel_515["text"] = "作者ID"
        GLabel_515.place(x=20,y=10,width=47,height=30)

        self.GLineEdit_508 = tk.Entry(root)
        self.GLineEdit_508["borderwidth"] = "1px"
        self.GLineEdit_508["justify"] = "center"
        self.GLineEdit_508["text"] = "path"
        self.GLineEdit_508['state'] = 'readonly'
        self.GLineEdit_508.place(x=90, y=50, width=610, height=30)

        self.GLineEdit_332 = tk.Entry(root)
        self.GLineEdit_332["borderwidth"] = "1px"
        self.GLineEdit_332["justify"] = "center"
        self.GLineEdit_332["text"] = "url"
        self.GLineEdit_332.place(x=90,y=10,width=154,height=30)

        self.GButton_333 = tk.Button(root)
        self.GButton_333["justify"] = "center"
        self.GButton_333["text"] = "开始下载"
        self.GButton_333.place(x=710, y=50, width=90, height=30)
        # self.GButton_333['state'] = 'disable'
        self.GButton_333["command"] = self.GButton_333_command

        ft2 = tkFont.Font(family='宋体', size=12)
        self.GLineEdit_428 = tk.Text(root)
        self.GLineEdit_428["borderwidth"] = "1px"
        self.GLineEdit_428["font"] = ft2
        self.GLineEdit_428.place(x=10, y=90, width=881, height=427)

        self.GButton_676 = tk.Button(root)
        self.GButton_676["font"] = ft
        self.GButton_676["justify"] = "center"
        self.GButton_676["text"] = "停止下载"
        self.GButton_676['state'] = 'disable'
        self.GButton_676.place(x=810, y=50, width=74, height=30)
        self.GButton_676["command"] = self.GButton_676_command

        GButton_701 = tk.Button(root)
        GButton_701["font"] = ft
        GButton_701["justify"] = "center"
        GButton_701["text"] = "获取信息"
        GButton_701.place(x=530,y=10,width=70,height=30)
        GButton_701["command"] = self.GButton_701_command

        GLabel_100 = tk.Label(root)
        GLabel_100["font"] = ft
        GLabel_100["justify"] = "center"
        GLabel_100["text"] = "昵称"
        GLabel_100.place(x=610,y=10,width=34,height=30)

        GLabel_1 = tk.Label(root)
        GLabel_1["font"] = ft
        GLabel_1["justify"] = "center"
        GLabel_1["text"] = "条作品"
        GLabel_1.place(x=790, y=10, width=76, height=30)

        self.GLineEdit_690 = tk.Entry(root)
        self.GLineEdit_690["borderwidth"] = "1px"
        self.GLineEdit_690["font"] = ft
        self.GLineEdit_690["justify"] = "center"
        self.GLineEdit_690["text"] = "条作品"
        self.GLineEdit_690['state'] = 'readonly'
        self.GLineEdit_690.place(x=710, y=10, width=90, height=30)

        self.GLineEdit_281 = tk.Entry(root)
        self.GLineEdit_281["borderwidth"] = "1px"
        self.GLineEdit_281["font"] = ft
        self.GLineEdit_281["fg"] = "#333333"
        self.GLineEdit_281["justify"] = "center"
        self.GLineEdit_281["text"] = "昵称"
        self.GLineEdit_281['state'] = 'readonly'
        self.GLineEdit_281.place(x=650,y=10,width=240,height=31)

        GButton_55 = tk.Button(root)
        GButton_55["bg"] = "#efefef"
        GButton_55["font"] = ft
        GButton_55["fg"] = "#000000"
        GButton_55["justify"] = "center"
        GButton_55["text"] = "保存路径"
        GButton_55["relief"] = "groove"
        GButton_55.place(x=10, y=50, width=70, height=30)
        GButton_55["command"] = self.GButton_55_command

        self.GLineEdit_932=tk.Entry(root) #cookies
        self.GLineEdit_932["borderwidth"] = "1px"
        ft = tkFont.Font(family='Times',size=10)
        self.GLineEdit_932["font"] = ft
        self.GLineEdit_932["fg"] = "#333333"
        self.GLineEdit_932["justify"] = "left"
        self.GLineEdit_932.place(x=290,y=10,width=237,height=32)

        self.GLabel_45=tk.Label(root)
        ft = tkFont.Font(family='Times',size=10)
        self.GLabel_45["font"] = ft
        self.GLabel_45["fg"] = "#333333"
        self.GLabel_45["justify"] = "center"
        self.GLabel_45["text"] = "did="
        self.GLabel_45.place(x=250,y=10,width=41,height=30)

    def GButton_55_command(self):  # 打开文件夹
        path = self.GLineEdit_508.get()
        if path:
            self.open_fp(path)

    def GButton_701_command(self):  # 获取信息
        authorId = self.GLineEdit_332.get()
        didid = self.GLineEdit_932.get()
        self.status_download = True
        # self._log(authorId)
        if authorId and didid:
            headers: dict = {'content-type': 'application/json',
             'Cookie': 'kpf=PC_WEB; kpn=KUAISHOU_VISION; clientid=3; did='+didid,
             'Host': 'www.kuaishou.com',
             'Origin': 'https://www.kuaishou.com',
             'Referer': 'https://www.kuaishou.com/profile/'+authorId,
             'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36(KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'}
            self.session.headers.update(headers)
            self.pcursor = ''
            self.postdata['variables']['userId'] = authorId
            self._log(f'--------------开始查询,请稍等-----------')
            obj1 = threading.Thread(target=self.analysis, args=({False}))
            obj1.setDaemon(True)
            obj1.start()
        else:
            self._log("请输入作者ID 和 cookie中的did")

    def GButton_676_command(self):  # 停止下载
        self.status_download = False
        self.GButton_676['state'] = 'disable'

    def GButton_333_command(self):  # 开始下载
        self.status_download = True
        self.GButton_333['state'] = 'disable'
        self.GButton_676['state'] = 'active'
        self.pcursor = ''
        obj1 = threading.Thread(target=self.analysis, args=({True}))
        obj1.setDaemon(True)
        obj1.start()

    def analysis(self, flag):
        page_num = 0
        len_feeds = 0
        nickname = '未找到该ID用户或者暂未发布作品'
        req = self._requests('get', self.starurl, decode_level=3)
        url_temp = 'https://www.kuaishou.com/short-video/3xw6b9av34wjeyw'
        req = self._requests('get', url_temp, decode_level=3)
        self.pcursor == ''
        count = 0
        while self.status_download:
            if self.pcursor == 'no_more':
                if flag:
                    self._log(f'--------------已全部完成下载!-----------')
                else:
                    self._log(f'--------------查询完成!-----------')
                break
            elif not self.status_download:
                self._log(f'--------------已停止下载!-----while------')
                break
            else:
                page_num += 1
                self.postdata['variables']['pcursor'] = self.pcursor
                json_data = self._requests('post', self.base_url, decode_level=2, json=self.postdata)
                if not json_data:
                    self._log(f'获取视频列表失败')
                    break
                # {'result': 2, 'error_msg': None, 'request_id': '659019654878802873'}
                feeds = json_data['data']['visionProfilePhotoList']['feeds']
                if feeds and len(feeds) > 0:
                    # 下一页 链接pcursor导入data
                    self.pcursor = json_data['data']['visionProfilePhotoList']['pcursor']
                    if flag:

                        self._log(f'……………………………………开始下载第{page_num}页数据……………………………………')
                        for feed in feeds:
                            count +=1
                            if not self.status_download:
                                self._log(f'--------------已停止下载!--feed---------')
                                break
                            self.download_photoUrl(feed,count)
                    else:
                        len_feeds += len(feeds)
                        nickname = feeds[0]['author']['name'] if feeds[0]['author']['name'] else "未知"
                        self.GButton_333['state'] = 'active'
                        break
                else:
                    if page_num == 1:
                        self._log("未找到该ID用户或该用户暂未发布作品")
                    break
        if not flag:

            filepath = os.getcwd() + '\\' + 'ksdownloads' + '\\' + nickname
            self.GLineEdit_690['state'] = 'normal'
            self.GLineEdit_281['state'] = 'normal'
            self.GLineEdit_508['state'] = 'normal'
            self.GLineEdit_508.delete(0, 'end')
            self.GLineEdit_281.delete(0, 'end')
            self.GLineEdit_690.delete(0, 'end')
            self.GLineEdit_690.insert(0, f'{len_feeds}')
            self.GLineEdit_281.insert(0, f'{nickname}')
            self.GLineEdit_508.insert(0, f'{filepath}')
            self.GLineEdit_690['state'] = 'readonly'
            self.GLineEdit_281['state'] = 'readonly'
            self.GLineEdit_508['state'] = 'readonly'

    def download_photoUrl(self, feed,num=0):
        try:
            filepath = os.getcwd() + '/' + 'ksdownloads' + '/' + feed['author']['name'] if feed['author'][
                'name'] else os.getcwd() + '/' + 'ksdownloads' + '/' + '未知用户'
            self.nickname = feed['author']['name'] if feed['author']['name'] else "未知"
            caption = feed['photo']['caption']  # title
            photoUrl = feed['photo']['photoUrl']  # video link
            photoid = feed['photo']['id']
            caption = re.sub('[ \\/:*?"<>|\n\t]', '', caption)
            likeCount = feed['photo']['likeCount']
            viewCount = feed['photo']['viewCount']
            self._log(f'{num:0>3d}{caption} {viewCount}次观看 {likeCount}人喜欢')
            caption = f'{num:0>3d}_' +caption
            caption = caption[:28] if len(caption) > 28 else caption
            if caption:
                # video_data = self._requests('get', photoUrl, decode_level=3).content
                video_data = requests.get(photoUrl).content
                time_ns = time.time()
                self.save_video(os.path.normpath(filepath), caption+ '_' +photoid  + '.mp4', video_data, photoUrl)
        except Exception as e:
            self._log(f'错误:{e},获取数据失败,请检查主播ID是否正确,也可能cookies已过期!')

    def save_video(self, path, filename, video_data, url):
        if not os.path.exists(path):
            os.makedirs(path)
        with open(os.path.normpath(os.path.join(path, filename)), 'wb') as f:
            f.write(video_data)
            now_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
            self._log(f'  状态:[下载完成]')
            self.datas.append([now_time, filename, path, url])

    def open_fp(self, fp):
        """
        打开文件或文件夹
        :param fp: 需要打开的文件或文件夹路径
        """
        import platform
        systemType: str = platform.platform()  # 获取系统类型
        if 'mac' in systemType:  # 判断以下当前系统类型
            fp: str = fp.replace("\\", "/")  # mac系统下,遇到`\\`让路径打不开,不清楚为什么哈,觉得没必要的话自己可以删掉啦,18行那条也是
            subprocess.call(["open", fp])
        else:
            fp: str = fp.replace("/", "\\")  # win系统下,有时`/`让路径打不开
            try:
                os.startfile(fp)
            except:
                self._log("文件还未下载")

    def _requests(self, method, url, decode_level=1, retry=0, timeout=15, **kwargs):
        if method in ["get", "post"]:
            for _ in range(retry + 1):
                try:
                    warnings.filterwarnings('ignore')
                    response = getattr(self.session, method)(url, timeout=timeout, verify=False, **kwargs)
                    return response.text if decode_level == 1 else response.json() if decode_level == 2 else response
                except Exception as e:
                    self._log(e)

        return None

    def _log(self, logmsg):
        global LOG_LINE_NUM
        current_time = self.get_current_time()
        logmsg_in = str(current_time) + " " + str(logmsg) + "\n"  # 换行
        self.GLineEdit_428.tag_config("even", background='#e0e0e0')
        self.GLineEdit_428.tag_config("odd", background='#ffffff')
        self.tag = 'odd' if self.tag == 'even' else 'even'
        if LOG_LINE_NUM <= 20:

            self.GLineEdit_428.insert('end', logmsg_in, self.tag)
            LOG_LINE_NUM = LOG_LINE_NUM + 1
        else:
            self.GLineEdit_428.delete(1.0, 2.0)
            self.GLineEdit_428.insert('end', logmsg_in, self.tag)

    def get_current_time(self):
        current_time = time.strftime('%H:%M:%S', time.localtime(time.time()))
        return current_time


if __name__ == "__main__":
    root = tk.Tk()
    app = App(root)
    root.mainloop()

免费评分

参与人数 2吾爱币 +2 热心值 +2 收起 理由
行胜于言丶 + 1 + 1 谢谢@Thanks!
九州 + 1 + 1 谢谢@Thanks!

查看全部评分

推荐
 楼主| kololi 发表于 2023-2-6 09:08 |楼主
qhabc 发表于 2023-2-4 16:32
https://www.kuaishou.com/profile/3x84yshs3r7yask
上面这个快手链接,作者名字中有两点..,这两个点是符 ...

雀食存在问题,如果懂python,自己改一下吧. 过滤掉就好.我最近有点懒.
或者你看我这个贴子,功能个人感觉比这个好一点.
https://www.52pojie.cn/thread-1741976-1-1.html
不过,也是存在这个问题,我想,哪天高兴了,我会改一下的.
推荐
 楼主| kololi 发表于 2022-7-28 19:28 |楼主
推荐
czp13 发表于 2022-7-28 18:01
测试了一下,很好用,感谢。
推荐
paihan 发表于 2022-7-28 22:38
请求体已发生变化为:operationName:"visionProfilePhotoList"
推荐
 楼主| kololi 发表于 2022-10-10 21:22 |楼主
linuxorg 发表于 2022-10-10 11:14
不能下载视频了,一直显示--------------开始查询,请稍等-----------

看置顶贴

免费评分

参与人数 1吾爱币 +2 热心值 +1 收起 理由
吖力锅 + 2 + 1 热心回复!

查看全部评分

4#
eeeeda 发表于 2022-7-28 18:15
可以解析快手短剧吗?无水印的
5#
likezqc 发表于 2022-7-28 18:26
有点东西
6#
syk989666 发表于 2022-7-28 18:34
感谢大神无私奉献
7#
IKYool 发表于 2022-7-28 18:37

感谢大神无私奉献
8#
jsnd001 发表于 2022-7-28 18:59
之前论坛很多软件对快手的支持都不是很好
9#
kailinking 发表于 2022-7-28 19:19
学习一下
10#
cmjj3518 发表于 2022-7-28 19:25
未找到该ID用户或该用户暂未发布作品
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止灌水或回复与主题无关内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-4-28 16:17

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表