python爬取m3u8视频

时间:2025-03-31 14:25:34

1.获取m3u8列表文件

  1. def get_m3u8_list(url):
  2. r=(url,headers=headers)
  3. info=(' = =(.*?) ',,)[0].strip()[:-1]
  4. info_json=((info)['currentVideoInfo']['ksPlayJson'])['adaptationSet'][0]['representation'][0]['url']
  5. filename=(info)['title']
  6. print(filename)
  7. return info_json,filename

2.提取所有视频片段的播放地址 ts文件

  1. def get_ts_files(url):
  2. r=(url,headers=headers)
  3. ts_files=('#.*','',).split()
  4. return ts_files

3.下载并合并视频片段

  1. def download_combine(ts_files,path,filename):
  2. with open(f'{path}/{filename}.mp4','ab') as f:
  3. for ts in tqdm(ts_files):
  4. ts='/mediacloud/acfun/acfun_video/'+ts
  5. ts_content=(ts,headers=headers).content
  6. (ts_content)

4.获取目录页的视频链接

  1. def get_index_links(index_url):
  2. r=(index_url,headers=headers)
  3. soup=BeautifulSoup(,'')
  4. link_list=soup.find_all('h1',class_='list-content-title')
  5. links=[]
  6. for a in link_list:
  7. link=""+('href')
  8. (link)
  9. return links