抓取网页swf内容

4 篇文章 0 订阅
1 篇文章 0 订阅
用curl拿到网页里的swf播放器,示例【知牛直播】
//php代码
public function zhiNiuLive($id = '1488869239') {
        //curl操作
        $url = "http://www.zhiniu8.com/live/".$id;
        $ch = curl_init();
        $timeout = 5;
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
        $file_contents = curl_exec($ch);
        curl_close($ch);
        //除去乱码
        $dom = new DOMDocument();
        $meta = '<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>';
        @$dom->loadHTML($meta.$file_contents);
        //获取部分内容
        $textContent = $dom->textContent;
        //匹配获取直播间id和播放器id
        $anchorUidReg = '/anchorUid: "[0-9]+"/';
        $liveRoomTopIdReg = '/liveRoomTopId: "[0-9]+"/';
        $liveRoomSubIdReg = '/liveRoomSubId: "[0-9]+"/';
        $idReg = '/[0-9]+/';
        preg_match($anchorUidReg, $textContent, $anchorUid);
        preg_match($liveRoomTopIdReg, $textContent, $liveRoomTopId);
        preg_match($liveRoomSubIdReg, $textContent, $liveRoomSubId);
        preg_match($idReg, $anchorUid[0], $Uid);
        preg_match($idReg, $liveRoomTopId[0], $TopId);
        preg_match($idReg, $liveRoomSubId[0], $SubId);
        $swf = "http://weblbs.yystatic.com/s/".$TopId[0]."/".$SubId[0]."/finscene.swf";
        
        $data['swf'] = $swf;
        $this->load->view('user/header', $data);
        $this->load->view('user/live', $data);
        $this->load->view('user/footer', $data);
    }

//live视图文件代码
<style>
.live{margin:0 auto;width:1000px;}    
</style>

<div class="live">
    <embed align="middle" allowfullscreen="true" allowscriptaccess="always" height="600px" mode="transparent" quality="high" src="<?php echo $swf; ?>" type="application/x-shockwave-flash" width="100%"/>
</div>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
使用Selenium可以方便地抓取网页内容。我们可以使用Selenium Python绑定提供的API来访问Selenium WebDriver的功能。下面是一个使用Selenium从动态加载的网页抓取数据的示例代码: ``` from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC url = 'https://www.example.com' driver = webdriver.Chrome() # 使用Chrome浏览器,需要先安装ChromeDriver并设置环境变量 driver.get(url) # 等待页面元素加载完成 wait = WebDriverWait(driver, 10) wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR, 'div.example_element'))) # 使用CSS选择器定位元素并获取文本内容 element = driver.find_element_by_css_selector('div.example_element') text = element.text.strip() # 打印抓取内容 print(text) driver.quit() # 关闭浏览器 ``` 以上示例演示了如何使用Selenium WebDriver和Python来抓取网页内容。更具体地说,我们使用WebDriver打开了一个网页,等待指定的元素加载完成后,通过CSS选择器定位元素并获取其文本内容。最后,我们打印出抓取内容。请注意,在运行代码之前,您需要安装ChromeDriver,并设置环境变量以便Selenium可以找到它。123 #### 引用[.reference_title] - *1* [使用Selenium来爬取网页内容](https://blog.csdn.net/CoCo629vanilla/article/details/126266287)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}} ] [.reference_item] - *2* *3* [使用Python和Selenium抓取网页内容](https://blog.csdn.net/weixin_39915649/article/details/131120944)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值