search
HomeBackend DevelopmentPHP TutorialDetailed explanation of how to obtain the absolute address of Youku videos_PHP tutorial

A while ago, I conducted a series of research on video sites in order to study KnLiveCommentary. Since KnLiveCommentary needs to be able to obtain sufficient video sources for testing, we selected Youku, a relatively large video website, for testing.
In fact, I started studying the resolution of absolute addresses to study Youku’s built-in player and remove advertisements. Later, we "decompiled" Youku's player using ASV6 (ActionScript Viewer 6), and achieved amazing results.

Youku videos adopt an encryption + dynamic acquisition method. The video address needs to be dynamically obtained by visiting the website, and the result needs to be decrypted and other operations.

Copy code The code is as follows:

$base_url = 'http://v.youku.com/player/getPlayList/ VideoIDS/'; //Get the base address of the video information
$_VIDEO_ID = $_GET['vid']; //Extract the Video Id from GET
if($_VIDEO_ID=='')
$_VIDEO_ID = 'XMjY0ODE1MDA0'; //I'm lazy, so I fixed one during testing
$ch = curl_init(); //Open the cURL object
curl_setopt($ch, CURLOPT_URL, $base_url . $ _VIDEO_ID); //Get the address of this video information
curl_setopt($ch, CURLOPT_HEADER, 1); //Require HEADER
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, 'http://v.youku.com/v_show/id_' . $_VIDEO_ID); //Give a fake "REFERER"
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); //Pass the current browser User Agent to the server
curl_setopt($ch, CURLOPT_NOBODY, 0);
$content = curl_exec($ch); //Execute! ! !
curl_close($ch); /*Analysis below*/
preg_match('~"seed"s*:s*(d+)s*,~iUs',$content,$seed);
preg_match('~{s*”(flv|mp4)”s*:s*”(.*)”s*}~iUs',$content,$encoded);
preg_match('~”key1″s *:s*”(.*)”s*,~iUs',$content,$key1);
preg_match('~”key2″s*:s*”(.*)”s*,~iUs ',$content,$key2);
//Extract necessary information from the returned JSON string seed, encoded_url, key1, key2
class decoder{
var $randomSeed = 0;
var $ cg_str="";
function __construct($seed){
$this->randomSeed = $seed;
}
function ran(){
$this->randomSeed = (($this->randomSeed * 211)+30031)%65536;
return ($this->randomSeed / 65536);// Calculate the new Seed based on the old Seed and return the proportional position of the Seed [0,1)
}
function cg_hun(){ //I guess this is called "CG mixing", anyway, the function of ASV solution is this name
$this->cg_str="";
$sttext = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ/:._-1234567890'; //Default string (maximum)
$len = strlen($sttext); //Get its length
for($i=0;$ i$cuch = (int)($this->ran()*strlen($sttext)); //Get the character subscript of the string Seed proportional position
$this->cg_str.=$sttext[$cuch]; //Read out the letters
$sttext = str_replace($sttext[$cuch],”,$sttext); //Delete this read out Letters (stop at 0)
}
}
function decode($string){
$output=””;
$this->cg_hun();
$ expl = explode('*',$string); //Break up the string 1*23*34*45*56*
for($i=0;$i$output.=$this->cg_str[(int)$expl[$i]]; //Get the cg_hun represented by the digits to scramble the string characters, and then the decryption is completed
}
return $output; //OK pull
}
function decode_key($key1,$key2){
$key = hexdec($key1); //Both Keys are HEX
$key = $key ^ -1520786011; //This turned out to be an 8-bit HEX, but I later used a calculator to calculate the value because it is convenient for PhP bit operations
return $key2 . dechex($key) ; //Synthesize the final Key
}
}//Decryption class, it is very convenient to use this $new = new decoder((int)$seed[1]);
$fileid = $new-> decode($encoded[2]);
$key = $new->decode_key($key1[1],$key2[1]);
//Feed the data and calculate//Address load Composition
$s7 = substr($fileid,10,strlen($fileid));
$s5 = substr($fileid,0,8);
$s6 = substr($fileid,6, 2);
//Open $s4 = '00';//Note that this is a HEX value, that is, 00 represents the first segment of the video, 01 the second 0f the fifteenth... and so on $ sid = time() . mt_rand(10,99) . '1000' . mt_rand(30,80) . '00';//Get a random SID and give it to the server (it will not be checked in fact)
$d_ADDR = 'http://f.youku.com/player/getFlvPath/sid/' . $sid . '_' . $s4 . '/st/' . $encoded[1] . '/fileid/' . $file_id ;
echo $d_ADDR . '?K=' . $key;
//Finally output the address

Please note that due to Youku’s replacement algorithm/format, the above method can no longer handle all situations. Let me describe the current process:
1. Visit http:/ /v.youku.com/player/getPlayList/VideoIDS/[ID]
2. Get the file and parse "streamfileids": {"flv":"encrypted address","mp4":"encrypted address"," Etc.":"Encrypted address"
3. Follow the above method to crack the encrypted address
4. Get the number of segments and K
{"mp4":[{"no":"0", "size":"18367795","seconds":"421","k":"281ff2875db680bb261c02ce"},{"no":"1","size":"19045091","seconds":"421", "k":"45398cdd4aa44968261c02ce"},
......
5. Synthesize the address, but the K of each segment uses the new K
obtained above

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327891.htmlTechArticleA while ago, we conducted a series of research on video sites in order to study KnLiveCommentary. Since KnLiveCommentary needs to be able to obtain sufficient video sources for testing, we choose...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
iOS 17:如何在iPhone上的相机应用程序中锁定白平衡iOS 17:如何在iPhone上的相机应用程序中锁定白平衡Sep 20, 2023 am 08:41 AM

白平衡是一项相机功能,可根据照明条件调整演色性。此iPhone设置可确保白色物体在照片或视频中显示为白色,从而补偿由于典型照明而导致的任何颜色变化。如果您想在整个视频拍摄过程中保持白平衡一致,可以将其锁定。在这里,我们将指导您如何为iPhone视频保持固定的白平衡。如何在iPhone上锁定白平衡必需:iOS17更新。(检查“常规>软件更新”下的“设置”>)。在iPhone上打开“设置”应用。在“设置”中,向下滚动并选择“相机”。在“相机”屏幕上,点击“录制视频”。在这

使用Python访问各种音频和视频文件的元数据使用Python访问各种音频和视频文件的元数据Sep 05, 2023 am 11:41 AM

我们可以使用Mutagen和Python中的eyeD3模块访问音频文件的元数据。对于视频元数据,我们可以使用电影和Python中的OpenCV库。元数据是提供有关其他数据(例如音频和视频数据)的信息的数据。音频和视频文件的元数据包括文件格式、文件分辨率、文件大小、持续时间、比特率等。通过访问这些元数据,我们可以更有效地管理媒体并分析元数据以获得一些有用的信息。在本文中,我们将了解Python提供的一些用于访问音频和视频文件元数据的库或模块。访问音频元数据一些用于访问音频文件元数据的库是-使用诱变

ppt视频换个电脑就无法播放怎么办ppt视频换个电脑就无法播放怎么办Feb 23, 2023 am 11:29 AM

ppt视频换个电脑就无法播放是因为路径不对,其解决办法:1、将PPT和视频放入U盘的同一个文件夹内;2、双击打开该PPT,找到想要插入视频的页数,点击“插入”按钮;3、在弹出的对话框内选择想要插入的视频即可。

视频切片授权什么意思视频切片授权什么意思Sep 27, 2023 pm 02:55 PM

视频切片授权是指在视频服务中,将视频文件分割成多个小片段并进行授权的过程。这种授权方式能提供更好的视频流畅性、适应不同网络条件和设备,并保护视频内容的安全性。通过视频切片授权,用户可以更快地开始播放视频,减少等待和缓冲时间,视频切片授权可以根据网络条件和设备类型动态调整视频参数,提供最佳的播放效果,视频切片授权还有助于保护视频内容的安全性,防止未经授权的用户进行盗播和侵权行为。

如何使用Golang将多个图片转换为视频如何使用Golang将多个图片转换为视频Aug 22, 2023 am 11:29 AM

如何使用Golang将多个图片转换为视频随着互联网的发展和智能设备的普及,视频成为了一种重要的媒体形式。有时候我们可能需要将多个图片转换为视频,以便展示图片的连续变化或者制作幻灯片。本文将介绍如何使用Golang编程语言将多个图片转换为视频。在开始之前,请确保你已经安装了Golang以及相关的开发环境。步骤1:导入相关的包首先,我们需要导入一些相关的Gola

iOS 17:如何录制FaceTime视频或音频消息iOS 17:如何录制FaceTime视频或音频消息Sep 21, 2023 am 10:13 AM

在iOS17中,当您FaceTime通话某人无法接听时,您可以留下视频或音频信息,具体取决于您使用的通话方式。如果您使用的是FaceTime视频,则可以留下视频信息,如果您使用的是FaceTime音频,则可以留下音频信息。您所要做的就是以通常的方式与某人进行FaceTime。未接来电后,您将看到“录制视频”选项,该选项可让您创建消息。录制完视频后,您会看到视频的预览,如果效果不佳,还可以选择重新录制。以下是在运行iOS17的设备上留下FaceTime消息的工作原理,以未接视频通话为例,在Face

Vue 中如何实现视频播放器?Vue 中如何实现视频播放器?Jun 25, 2023 am 09:46 AM

随着互联网的不断发展,视频已经成为了人们日常生活中必不可少的娱乐方式之一。为了给用户提供更好的视频观看体验,许多网站和应用程序都开始使用视频播放器,使得用户可以在网页中直接观看视频。而Vue作为目前非常流行的前端框架之一,也提供了很多简便且实用的方法来实现视频播放器。下面,我们将简要介绍一下在Vue中实现视频播放器的方法。一、使用HTML5的video标签H

电脑打不开视频是什么原因电脑打不开视频是什么原因Jun 27, 2023 pm 01:42 PM

电脑打不开视频原因有:1、视频文件不完整;2、没有支持此视频的播放器;3、视频文件的后缀被修改过;4、视频文件关联不正确;5、没有使用插件。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft