定制 cregennan/pornhub-toolkit 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cregennan/pornhub-toolkit

最新稳定版本:1.0.1

Composer 安装命令:

composer require cregennan/pornhub-toolkit

包简介

Pornhub Development Toolkit

README 文档

README

license issues

About

Toolbox is a bunch of instruments for developers. We believe, everyone should have access to videos they want. Sometimes, standard Pornhub API is not good enough. Toolbox can help you develop your own apps, based on Pornhub. Project repo on Github

Installation

composer require cregennan/pornhub-toolkit

You can always download package directly from here. You'll need to manually include ToolBox and ToolboxDefinitions classes from /src

Tools

Video direct link extractor

Pornhub Embed video is not enough for some situations. Here comes Link Extractor.

Usage: Toolkit::GetMediaData($viewkey)

<?php
include_once 'vendor/autoload.php';
use Cregennan\PornhubToolkit\Toolkit as Toolkit;
$viewkey = "ph***********";

$data = json_decode(Toolkit::GetMediaData($viewkey));
?>
<iframe width="500" height="400" src="<?=$data[0]->videoUrl ?>" ></iframe>

Toolkit::GetMediaData($viewkey) returns json string of media definitions e.g.

[{
    "defaultQuality":false,
    "format":"mp4",
    "videoUrl":"https://de1.phncdn.com/videos/****",
    "quality":"2160"
},
{
    "defaultQuality":false,
    "format":"mp4",
    "videoUrl":"https://de1.phncdn.com/videos/****",
    "quality":"1080"
}]

Issues

You can always send issue in its tab or make pull request with some fixes.

License

Pornhub Toolbox is open sourced software licensed under MIT license.

统计信息

  • 总下载量: 145
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 6
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-10-27