├── .gitignore ├── README.md ├── autoLoad.php ├── config.php ├── core ├── .gitignore ├── Cache │ └── FileCache.php ├── Command │ ├── CliProgressBar.php │ └── Console.php ├── Common │ ├── ArrayHelper.php │ ├── Downloader.php │ ├── FFmpeg.php │ ├── File.php │ ├── M3u8.php │ └── StringHelper.php ├── Config │ └── Config.php ├── Http │ ├── .gitignore │ ├── Client.php │ ├── Curl.php │ ├── Domain.php │ └── MessageInterface │ │ ├── Message.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── UploadFile.php │ │ └── Uri.php ├── Platform │ ├── Douyu │ │ └── Douyu.php │ ├── Iqiyi │ │ └── Iqiyi.php │ ├── Krcom │ │ └── Krcom.php │ ├── Miaopai │ │ └── Miaopai.php │ ├── Porn │ │ └── Porn.php │ ├── Pornhub │ │ └── Pornhub.php │ ├── Qq │ │ └── Qq.php │ ├── Twitter │ │ └── Twitter.php │ ├── Weibo │ │ └── Weibo.php │ ├── Xvideos │ │ └── Xvideos.php │ └── Youku │ │ └── Youku.php └── Style │ └── Color.php └── start.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/README.md -------------------------------------------------------------------------------- /autoLoad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/autoLoad.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/config.php -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | AbstractInterface 2 | Style -------------------------------------------------------------------------------- /core/Cache/FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Cache/FileCache.php -------------------------------------------------------------------------------- /core/Command/CliProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Command/CliProgressBar.php -------------------------------------------------------------------------------- /core/Command/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Command/Console.php -------------------------------------------------------------------------------- /core/Common/ArrayHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Common/ArrayHelper.php -------------------------------------------------------------------------------- /core/Common/Downloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Common/Downloader.php -------------------------------------------------------------------------------- /core/Common/FFmpeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Common/FFmpeg.php -------------------------------------------------------------------------------- /core/Common/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Common/File.php -------------------------------------------------------------------------------- /core/Common/M3u8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Common/M3u8.php -------------------------------------------------------------------------------- /core/Common/StringHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Common/StringHelper.php -------------------------------------------------------------------------------- /core/Config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Config/Config.php -------------------------------------------------------------------------------- /core/Http/.gitignore: -------------------------------------------------------------------------------- 1 | MessageInterface 2 | Client.php -------------------------------------------------------------------------------- /core/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/Client.php -------------------------------------------------------------------------------- /core/Http/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/Curl.php -------------------------------------------------------------------------------- /core/Http/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/Domain.php -------------------------------------------------------------------------------- /core/Http/MessageInterface/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/MessageInterface/Message.php -------------------------------------------------------------------------------- /core/Http/MessageInterface/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/MessageInterface/Request.php -------------------------------------------------------------------------------- /core/Http/MessageInterface/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/MessageInterface/Response.php -------------------------------------------------------------------------------- /core/Http/MessageInterface/ServerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/MessageInterface/ServerRequest.php -------------------------------------------------------------------------------- /core/Http/MessageInterface/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/MessageInterface/Stream.php -------------------------------------------------------------------------------- /core/Http/MessageInterface/UploadFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/MessageInterface/UploadFile.php -------------------------------------------------------------------------------- /core/Http/MessageInterface/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Http/MessageInterface/Uri.php -------------------------------------------------------------------------------- /core/Platform/Douyu/Douyu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Douyu/Douyu.php -------------------------------------------------------------------------------- /core/Platform/Iqiyi/Iqiyi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Iqiyi/Iqiyi.php -------------------------------------------------------------------------------- /core/Platform/Krcom/Krcom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Krcom/Krcom.php -------------------------------------------------------------------------------- /core/Platform/Miaopai/Miaopai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Miaopai/Miaopai.php -------------------------------------------------------------------------------- /core/Platform/Porn/Porn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Porn/Porn.php -------------------------------------------------------------------------------- /core/Platform/Pornhub/Pornhub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Pornhub/Pornhub.php -------------------------------------------------------------------------------- /core/Platform/Qq/Qq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Qq/Qq.php -------------------------------------------------------------------------------- /core/Platform/Twitter/Twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Twitter/Twitter.php -------------------------------------------------------------------------------- /core/Platform/Weibo/Weibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Weibo/Weibo.php -------------------------------------------------------------------------------- /core/Platform/Xvideos/Xvideos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Xvideos/Xvideos.php -------------------------------------------------------------------------------- /core/Platform/Youku/Youku.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Platform/Youku/Youku.php -------------------------------------------------------------------------------- /core/Style/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/core/Style/Color.php -------------------------------------------------------------------------------- /start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackapi/phpVideos/HEAD/start.php --------------------------------------------------------------------------------