Home > Backend Development > PHP Tutorial > 有人做过 采集奇艺视频的吗 求指点

有人做过 采集奇艺视频的吗 求指点

WBOY
Release: 2016-06-23 14:28:22
Original
1153 people have browsed it

如题 

   新浪微博 通过奇艺的URL 能采集到视频的信息。 在网上找了下资料 好像奇艺没有开放API   URL 也经过加密处理了。
 
 求做过的大神 指点一二    


回复讨论(解决方案)

采集到不知道
我倒是知道有一款软件能下载
名字叫 星光

等高手解决

通过视频的分享地址找到重要参数就很容易获取视频地址了

$url='http://yule.iqiyi.com/20120619/b2184d4155a5a856.html';$contents=file_get_contents($url);preg_match('/"videoId":"([^"]+)"/',$contents,$match);echo 'http://player.video.qiyi.com/'.$match[1]; //这就是你要采集的视频URL
Copy after login

估计没那么好采集。毕竟有些的东西,保护起来比较好。

我做过,没问题,优酷。乐视,奇艺,凤凰网,迅雷。搜狐视频,土豆。酷六。都做过

通过视频的分享地址找到重要参数就很容易获取视频地址了


PHP code?12345 $url='http://yule.iqiyi.com/20120619/b2184d4155a5a856.html'; $contents=file_get_contents($url); preg_match('/"videoId":"([^"]+)"/',$contents,$match);   echo 'http://player.video.qiyi.com/'.$match[1]; //这就是你要采集的视频URL 
----------------------------------------------
----------------------------------------------
这个不是的,这个是flash播放地址,不是视频文件地址。

几大视频网站都可以采集到视频本身及视频的flash地址

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template