吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

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

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

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

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

皮皮搞笑无水印解析

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

      天 王 盖 地 虎

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

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




封装好的类
[C#] 纯文本查看 复制代码
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
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, 2025-5-25 11:35

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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