吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1705|回复: 5
收起左侧

[求助] 360门铃抓取图片或者视频

[复制链接]
kover 发表于 2023-6-30 15:01
本帖最后由 kover 于 2023-6-30 15:10 编辑

以下代码为通过小程序版的360摄像机的协议来下载最新的视频和图片,但是却为上传到其他网站空间的
我只想下载到本地,应该如何改造呢?还有这个抓包request_params,研究了下没发现有这样链接的,要如何抓呢
[Python] 纯文本查看 复制代码
# coding: utf-8
import requests
import json
import datetime
import logging
import argparse
import os
import urllib.request
import pathlib
import shutil
from minio import Minio
import mimetypes
from minio.error import ResponseError
import time

log_file = '360.log'
request_params = 'qid=*****&sid=*****&from=mpc_ipcam_wechatmp'

if os.path.exists(log_file):
    os.remove(log_file)

logging.basicConfig(filename=log_file, level=logging.DEBUG, format='%(asctime)s %(message)s',
                    datefmt='%m/%d/%Y %I:%M:%S %p')
logger = logging.getLogger("360可视门铃")
logger.setLevel(logging.DEBUG)
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
ch.setFormatter(formatter)
logger.addHandler(ch)


class IPC360:
    headers = {
        'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/7.0.11(0x17000b21) NetType/WIFI Language/zh_CN',
        'Content-Type': 'application/x-www-form-urlencoded',
        "Referer": 'https://servicewechat.com/wx5f78be8ca091436c/11/page-frame.html'
    }

    def build_url(self, action):
        return "https://q3.jia.360.cn/" + action + "?" + request_params

    def post_request(self, url, data):
        logger.info('请求地址 %s ...', url)
        res = requests.post(url=url, data=data, headers=self.headers)
        res = json.loads(res.text)
        return res

    def ipc_list(self):
        data = {
            'version': 3
        }
        return self.post_request(self.build_url('app/getIpcList'), data)

    def index(self):
        data = {
            'days': 1
        }
        return self.post_request(self.build_url('event/getIndex'), data)

    def list_by_sn(self, sn, ipc_type=5):
        today = datetime.date.today()
        data = {
            'sn': sn,
            'ipcType': ipc_type,
            'humanCount': 0,
            'date': today.strftime("%Y%m%d"),
            'count': 100,
            'eventTypes': '[304,305,306,307]'
        }
        return self.post_request(self.build_url('event/getListBySn'), data)


parser = argparse.ArgumentParser(description='Start Args')
parser.add_argument('--download', type=bool, default=True)
args = parser.parse_args()
path = os.getcwd() + "/download/"
if not os.path.exists(path):
    os.makedirs(path)



if args.download:
    upload()
    logger.info('延时3秒')
    time.sleep(3)
    ipc = IPC360()
    ipc_list = ipc.ipc_list()
    errorCode = ipc_list["errorCode"]
    logger.info('获取摄像头信息,返回代码:%d', errorCode)
    if errorCode == 0:
        for device in ipc_list["devices"]:
            logger.info('正在检查设备 SN:%s(%s) ...', device['sn'], device['title'])
            sn_path = path + device["sn"] + "/"
            if not os.path.exists(sn_path):
                os.makedirs(sn_path)
            index = 0
            for event in device["eventList"]:
                video_file = sn_path + str(event["eventTime"])
                video_url = event["videoUrl"] + '&' + request_params
                thumb_url = event["thumbUrl"] + '&' + request_params
                thumb_file = video_file + ".jpg"
                tmp_file = video_file + '.mpeg'
                if not os.path.exists(sn_path + 'latest.mpeg'):
                    logger.info('最新视频不存在,下载中... %s', sn_path + 'latest.mpeg')
                    urllib.request.urlretrieve(video_url, sn_path + 'latest.mpeg')
                if os.path.exists(video_file):
                    logger.info('视频记录 %s 已上传,跳过...', tmp_file)
                    continue
                urllib.request.urlretrieve(video_url, tmp_file)
                if not os.path.exists(tmp_file):
                    logger.info("文件 %s 下载失败 %s", video_url, tmp_file)
                    continue
                logger.info('视频记录 %s 已保存到:%s .', str(event["eventTime"]), tmp_file)
                if os.path.getsize(tmp_file) == 0:
                    logger.info('视频文件尺寸不正确,暂时跳过该文件: %s', video_url)
                    continue
                urllib.request.urlretrieve(thumb_url, thumb_file)
                if index == 0:
                    shutil.copy(tmp_file, sn_path + 'latest.mpeg')
                    shutil.copy(thumb_file, sn_path + 'latest.jpg')
                pathlib.Path(video_file).touch()
                index += 1
      logger.info('完成...')

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

dnbjq 发表于 2023-6-30 15:15
希望有大神解答,360可视双摄门铃,也想在小爱pro上显示按门铃后的画面
 楼主| kover 发表于 2023-6-30 15:19
dnbjq 发表于 2023-6-30 15:15
希望有大神解答,360可视双摄门铃,也想在小爱pro上显示按门铃后的画面

现在主要不会抓包,要不我就用以上代码来测试了。用小黄鸟抓不到
dnbjq 发表于 2023-6-30 16:46
kover 发表于 2023-6-30 15:19
现在主要不会抓包,要不我就用以上代码来测试了。用小黄鸟抓不到

https://bbs.hassbian.com/thread-12249-1-11.html  这个是之前遇到的一个帖子分享的思路,不知道对你有没帮助
头像被屏蔽
tl;dr 发表于 2023-6-30 18:43
提示: 作者被禁止或删除 内容自动屏蔽
zhanggengyu250 发表于 2023-6-30 19:42
感谢分享!!!
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

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

GMT+8, 2024-11-24 22:04

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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