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

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 6544|回复: 29
收起左侧

[其他转载] 皮皮虾 无水印解析视频 官方接口 !!

  [复制链接]
dpc520 发表于 2022-10-23 12:25
本帖最后由 dpc520 于 2022-10-25 22:35 编辑

抖音无水印解析
西瓜视频无水印解析
微视无水印解析
快手无水印解析

皮皮搞笑无水印解析

各大平台都写好了 纯一手包 非第三方调用!!!

      天 王 盖 地 虎

拒绝白嫖来点动力持续更新

复制粘贴直接调用简单粗暴
[C#] 纯文本查看 复制代码
   Ppx p = new Ppx("https://h5.pipix.com/s/MmdstMo/");
          //  p.GetAuthorHeadImage(); 得到作者头像
          //p.GetTitle(); 得到视频标题
          Console.WriteLine(p.GetMp4());
            //得到原视频




封装好的类
[C#] 纯文本查看 复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Net;
using Newtonsoft.Json.Linq;

namespace Ppx_Jx
{
    public class Ppx
    {

        JObject Json;
        //json

        public Ppx(string url)
        {

            GetLong(ref url);//长链接
            GetMp4Id(ref url);//视频ID
            GetData(url); //得到json

        }


        public void GetLong(ref string url)
        {

            var Beg = (HttpWebRequest)WebRequest.Create(url);

            Beg.AllowAutoRedirect = false;
            using (HttpWebResponse Ret = (HttpWebResponse)Beg.GetResponse())
                url = Ret.Headers["location"];



        }
        //得到长链接


        public void GetMp4Id(ref string url)
        {
            url = url.Substring(26, 19);
            //得到视频ID      
        }

        public string GetData(string mp4Id)
        {
            var Beg = (HttpWebRequest)WebRequest.Create($"https://ib-hl.snssdk.com/bds/cell/detail/?version_code=4.2.7&app_name=super&device_id=1988391945639406&channel=App%20Store&resolution=1170*2532&aid=1319&last_channel=App%20Store&last_update_version_code=42691&recommend_disable=0&update_version_code=42780&ac=WIFI&os_version=15.5&device_platform=iphone&iid=805274026772804&device_type=iPhone%2012&cell_id={mp4Id}&cell_type=1&api_version=1");
            var Ret = (HttpWebResponse)Beg.GetResponse();
            var Read = new StreamReader(Ret.GetResponseStream(), Encoding.UTF8);
            string json = Read.ReadToEnd();


            //序列化
            Json = JObject.Parse(json);


            Read.Dispose();
            Ret.Dispose();
            return json;
            //得到JSON
        }

        public string GetCreateTime()
        {
            DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));

            return startTime.AddSeconds(Convert.ToInt64(Json["data"]["data"]["display_time"])).ToString("yyy-MM-dd hh:mm:ss");

            //得到发布时间
        }


        public string GetMp4()
        {
            return Json["data"]["data"]["item"]["video"]["video_high"]["url_list"][0]["url"].ToString();
        }//得到原视频

        public string GetTitle()
        {
            return Json["data"]["data"]["item"]["content"].ToString();
        }//视频标题

        public string GetHeightCover()
        {
            return "https://p9-ppx.byteimg.com/img/" + Json["data"]["data"]["item"]["cover"]["uri"].ToString() + "~1280x720.jpg";
            //得到高清封面图 720
        }


        public string GetAouthorName()
        {
            return Json["data"]["data"]["item"]["author"]["name"].ToString();

            //名称
        }

        public string GetAuthorHeadImage()
        {
        return "https://p3-ppx.byteimg.com/img/" + Json["data"]["data"]["item"]["author"]["avatar"]["uri"].ToString()+ "~tplv-ppx-avatar:200:200:q100.jpg";
            //作者头像 jpg类型
        }

    }
}



bca9e64e031e8fe09fadd117af1e697.png
e1255bdfe6d8432cc01773cda592381.png

免费评分

参与人数 12吾爱币 +12 热心值 +11 收起 理由
gglby + 1 + 1 谢谢@Thanks!
chaosgod + 1 + 1 小鸡炖蘑菇
51job + 1 + 1 谢谢@Thanks!
beishangwa18 + 1 + 1 谢谢@Thanks!
YYL7535 + 1 + 1 谢谢@Thanks!
lmt19841123 + 1 成品哪位大哥给个
FadeTube + 1 + 1 谢谢@Thanks!
wangp-3366 + 1 + 1 我很赞同!
zhao7643442 + 1 + 1 热心回复!
真的小白 + 1 + 1 谢谢@Thanks!
aptapt + 1 + 1 谢谢@Thanks!
Thomas7 + 1 + 1 谢谢@Thanks!

查看全部评分

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

Hswyc 发表于 2022-10-24 15:58
https://ib-hl.snssdk.com/bds/cell/detail/?version_code=4.2.7&app_name=super&device_id=1988391945639406&channel=App%20Store&resolution=1170*2532&aid=1319&last_channel=App%20Store&last_update_version_code=42691&recommend_disable=0&update_version_code=42780&ac=WIFI&os_version=15.5&device_platform=iphone&iid=805274026772804&device_type=iPhone%2012&cell_id=item&cell_type=1&api_version=1
这个链接是怎么来的呢?
 楼主| dpc520 发表于 2022-10-24 22:36
Hswyc 发表于 2022-10-24 15:58
https://ib-hl.snssdk.com/bds/cell/detail/?version_code=4.2.7&app_name=super&device_id=19883919456394 ...

抓包抓到的啊
an338789 发表于 2022-10-23 12:34
aptapt 发表于 2022-10-23 13:27
大佬,这个咋用啊?
likaiaixuexi 发表于 2022-10-23 13:56
我用的微信小程序,不过有广告
hahaleizi123 发表于 2022-10-23 15:01
学习学习!!!
pemconrv 发表于 2022-10-23 16:14
学习学习!!!
咿呀咿呀呦 发表于 2022-10-23 16:38
不知道怎么用
dingqh 发表于 2022-10-23 16:42
不会玩...
heju 发表于 2022-10-23 16:44
不知道怎么使用呢。
qinguangcan 发表于 2022-10-23 16:50
能不能全部做成php接口啊。
您需要登录后才可以回帖 登录 | 注册[Register]

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

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

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

GMT+8, 2024-3-28 17:27

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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