這篇文章給大家介紹使用python如何實(shí)現(xiàn)下載m3u8格式的視頻文件,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
創(chuàng)新互聯(lián)網(wǎng)站建設(shè)由有經(jīng)驗(yàn)的網(wǎng)站設(shè)計(jì)師、開發(fā)人員和項(xiàng)目經(jīng)理組成的專業(yè)建站團(tuán)隊(duì),負(fù)責(zé)網(wǎng)站視覺設(shè)計(jì)、用戶體驗(yàn)優(yōu)化、交互設(shè)計(jì)和前端開發(fā)等方面的工作,以確保網(wǎng)站外觀精美、成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)易于使用并且具有良好的響應(yīng)性。import requests import os import datetime import threading class xiazai(): def __init__(self,url): self.url = url work_dir = os.getcwd() # print(work_dir) # 用來保存ts文件 file_dir = os.path.join(work_dir, 'file_tmp') if not os.path.exists(file_dir): os.mkdir(file_dir) self.headers ={ 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36' } self.savefile(self.url) def savefile(self, file_url): r = requests.get(file_url, headers=self.headers) # 合成帶有hls的m3u8地址 if r.text.split('\n')[-1] == '': hls_mark = r.text.split('\n')[-2] # 以防\n結(jié)尾 else: hls_mark = r.text.split('\n')[-1] self.url_m3u8_hls = file_url.replace('index.m3u8', hls_mark) #file_m3u8 = url_m3u8_hls.split('/')[-1] self.duqu() #print(url_m3u8_hls) def duqu(self): r = requests.get(self.url_m3u8_hls, headers=self.headers).text text_bytes = r.split('\n') # 篩選以.ts結(jié)尾的行 # 有些情況下可能是以其他格式的文件,比如png,下載后修改后綴即可 # ts_name = [i for i in text_string if i.endswith('.ts')] self.ts_time = [i for i in text_bytes if i.startswith('#EXTINF')] #self.shijian(dm_time) #print(dm_time) self.ts_neirong = [i for i in text_bytes if not i.startswith('#')] self.ts_neirong.pop() self.threads = [] self.threads.append(threading.Thread(target=self.xiazai)) self.threads.append(threading.Thread(target=self.shijian)) for t in self.threads: # print(t) t.start() #self.xiazai(url_m3u8_hls) # print(ts_neirong) def shijian(self): self.dm_time = 0 for i in range(len(self.ts_time)): ts_time1 = self.ts_time[i].replace('#EXTINF:', '') ts_time2 = ts_time1.replace(',', '') self.dm_time = float(ts_time2) + self.dm_time shichang_time = str(datetime.timedelta(seconds=self.dm_time)) print('視頻時(shí)長(zhǎng):%s' % shichang_time) def xiazai(self): liebiao=[] for i in range(len(self.ts_neirong)): hls_mark = self.url_m3u8_hls.split('/')[-1] url_xiazai = self.url_m3u8_hls.replace(hls_mark, self.ts_neirong[i]) liebiao.append(url_xiazai) #print(url_xiazai) # r = requests.get(url_xiazai, headers=self.headers) # with open('file_tmp/'+ts_neirong[i], 'wb') as f: # f.write(r.content) # f.close() x = self.bisector_list(liebiao, 10) self.xiancheng0=x[0] self.xiancheng1=x[1] self.xiancheng2=x[2] self.xiancheng3=x[3] self.xiancheng4=x[4] self.xiancheng5=x[5] self.xiancheng6=x[6] self.xiancheng7=x[7] self.xiancheng8=x[8] self.xiancheng9=x[9] self.threads2 = [] self.threads2.append(threading.Thread(target=self.xiancheng_xiazai1)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai2)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai3)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai4)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai5)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai6)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai7)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai8)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai9)) self.threads2.append(threading.Thread(target=self.xiancheng_xiazai10)) for t in self.threads2: # print(t) t.start() def xiancheng_xiazai1(self): #print(self.xiancheng0) for i in self.xiancheng0: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai2(self): #print(self.xiancheng1) for i in self.xiancheng1: #print(i) r = requests.get(i, headers=self.headers) mingzi= i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai3(self): #print(self.xiancheng2) for i in self.xiancheng2: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai4(self): #print(self.xiancheng3) for i in self.xiancheng3: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai5(self): #print(self.xiancheng4) for i in self.xiancheng4: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai6(self): #print(self.xiancheng5) for i in self.xiancheng5: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai7(self): #print(self.xiancheng6) for i in self.xiancheng6: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai8(self): #print(self.xiancheng7) for i in self.xiancheng7: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai9(self): #print(self.xiancheng8) for i in self.xiancheng8: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def xiancheng_xiazai10(self): #print(self.xiancheng9) for i in self.xiancheng9: #print(i) r = requests.get(i, headers=self.headers) mingzi = i.split('/')[-1] with open('file_tmp/'+mingzi, 'wb') as f: f.write(r.content) f.close() def bisector_list(self,tabulation: list, num: int): """ 將列表平均分成幾份 :param tabulation: 列表 :param num: 份數(shù) :return: 返回一個(gè)新的列表 """ new_list = [] '''列表長(zhǎng)度大于等于份數(shù)''' if len(tabulation) >= num: '''remainder:列表長(zhǎng)度除以份數(shù),取余''' remainder = len(tabulation) % num if remainder == 0: '''merchant:列表長(zhǎng)度除以分?jǐn)?shù)''' merchant = int(len(tabulation) / num) '''將列表平均拆分''' for i in range(1, num + 1): if i == 1: new_list.append(tabulation[:merchant]) else: new_list.append(tabulation[(i - 1) * merchant:i * merchant]) return new_list else: '''merchant:列表長(zhǎng)度除以分?jǐn)?shù) 取商''' merchant = int(len(tabulation) // num) '''remainder:列表長(zhǎng)度除以份數(shù),取余''' remainder = int(len(tabulation) % num) '''將列表平均拆分''' for i in range(1, num + 1): if i == 1: new_list.append(tabulation[:merchant]) else: new_list.append(tabulation[(i - 1) * merchant:i * merchant]) '''將剩余數(shù)據(jù)的添加前面列表中''' if int(len(tabulation) - i * merchant) <= merchant: for j in tabulation[-remainder:]: new_list[tabulation[-remainder:].index(j)].append(j) return new_list else: '''如果列表長(zhǎng)度小于份數(shù)''' for i in range(1, len(tabulation) + 1): tabulation_subset = [] tabulation_subset.append(tabulation[i - 1]) new_list.append(tabulation_subset) return new_list if __name__=='__main__': xiazai('/tupian/20230522/index.m3u8&分享題目:使用python如何實(shí)現(xiàn)下載m3u8格式的視頻文件-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://muchs.cn/article28/iogcp.html成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、品牌網(wǎng)站建設(shè)、做網(wǎng)站、關(guān)鍵詞優(yōu)化、網(wǎng)站收錄、App設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容