1.获取m3u8列表文件
-
def get_m3u8_list(url):
-
r=(url,headers=headers)
-
info=(' = =(.*?) ',,)[0].strip()[:-1]
-
info_json=((info)['currentVideoInfo']['ksPlayJson'])['adaptationSet'][0]['representation'][0]['url']
-
filename=(info)['title']
-
print(filename)
-
return info_json,filename
2.提取所有视频片段的播放地址 ts文件
-
def get_ts_files(url):
-
r=(url,headers=headers)
-
ts_files=('#.*','',).split()
-
return ts_files
3.下载并合并视频片段
-
def download_combine(ts_files,path,filename):
-
with open(f'{path}/{filename}.mp4','ab') as f:
-
for ts in tqdm(ts_files):
-
ts='/mediacloud/acfun/acfun_video/'+ts
-
ts_content=(ts,headers=headers).content
-
(ts_content)
4.获取目录页的视频链接
-
def get_index_links(index_url):
-
r=(index_url,headers=headers)
-
soup=BeautifulSoup(,'')
-
link_list=soup.find_all('h1',class_='list-content-title')
-
links=[]
-
for a in link_list:
-
link=""+('href')
-
(link)
-
return links