当前位置:网站首页>How do programmers without objects spend the Chinese Valentine's Day
How do programmers without objects spend the Chinese Valentine's Day
2022-08-05 01:52:00 【Z_Xshan】

Run the code and enter the connection to crawl the video 直接上代码
# encoding: utf-8
'''
爬取b站视频
'''
import requests
import json
import re
import os
class BilibiliVideoSpider(object):
def __init__(self, url, output_root=''):
self.url = url
if not os.path.isdir(output_root):
output_root = os.path.abspath(os.path.dirname(__file__))
self.output_root = output_root
self.headers = {
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.5',
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'
} # 定义请求头
def _match(self, text, pattern):
match = re.search(pattern, text)
if match is None:
print('this pattern was not matched !')
return json.loads(match.group(1))
def getHtml(self):
try:
response = requests.get(url=self.url, headers=self.headers) # 发请求,拿数据 (获取响应对象)
print(f'status_code: {response.status_code}')
if response.status_code == 200:
return response
except RequestException:
print('html reques error !')
def parseHtml(self, response):
playinfo = self._match(response.text, '__playinfo__=(.*?)</script><script>') # 视频详情json
initial_state = self._match(response.text, r'__INITIAL_STATE__=(.*?);\(function\(\)') # 视频内容json
video_url = playinfo['data']['dash']['video'][0]['baseUrl'] # 视频分多种格式,直接取分辨率最高的视频 1080p
audio_url = playinfo['data']['dash']['audio'][0]['baseUrl'] # get audio address
video_name = initial_state['videoData']['title'] # Take the video name
return video_url, audio_url, video_name
def video_audio_merge(self, video_src, audio_src, video_dst):
'''使用ffmpeg单个视频音频合并'''
import subprocess
command = 'ffmpeg -i %s_video.mp4 -i %s_audio.mp4 -c copy %s.mp4 -y -loglevel quiet' % (
video_src, audio_src, video_dst)
subprocess.Popen(command, shell=True)
def downloadVideo(self, video_url, audio_url, video_name):
self.headers.update({"Referer": self.url})
print('开始下载视频: ')
video_content = requests.get(video_url, headers=self.headers)
audio_content = requests.get(audio_url, headers=self.headers)
print('%s视频大小:' % video_name, video_content.headers['content-length'])
print('%s音频大小:' % video_name, audio_content.headers['content-length'])
# 下载视频
received_video = 0
video = f'{self.output_root}/video.mp4'
with open(video, 'ab') as output:
while int(video_content.headers['content-length']) > received_video:
self.headers['Range'] = 'bytes=' + str(received_video) + '-'
response = requests.get(video_url, headers=self.headers)
output.write(response.content)
received_video += len(response.content)
# 下载音频开始
audio_content = requests.get(audio_url, headers=self.headers)
received_audio = 0
audio = f'{self.output_root}/audio.mp4'
with open(audio, 'ab') as output:
while int(audio_content.headers['content-length']) > received_audio:
self.headers['Range'] = 'bytes=' + str(received_audio) + '-'
response = requests.get(audio_url, headers=self.headers)
output.write(response.content)
received_audio += len(response.content)
print('视频下载完成')
video_dst = f'{self.output_root}/download.mp4'
self.video_audio_merge(video, audio, video_dst)
print(f'下载的视频: {video_dst}')
os.remove(video)
os.remove(audio)
def video_audio_merge(self, video_src, audio_src, video_dst):
'''使用ffmpeg单个视频音频合并'''
cmd = f'ffmpeg -y -i {audio_src} -i {video_src} -vcodec copy -acodec aac -strict -2 -q:v 1 {video_dst}'
print('execute cmd:', cmd)
os.system(cmd)
# subprocess.Popen(command, shell=True)
def run(self):
response = self.getHtml()
video_url, audio_url, video_name = self.parseHtml(response)
self.downloadVideo(video_url, audio_url, video_name)
def demo():
# url = 'https://www.bilibili.com/video/BV1Q5411p7bz?from=search&seid=14643382716113842219'
url=input('请输入视频地址:')
b = BilibiliVideoSpider(url)
b.run()
if __name__ == '__main__':
demo()
Then save it to a file in the current path
边栏推荐
- Interview summary: Why do interviewers in large factories always ask about the underlying principles of Framework?
- 刷爆朋友圈,Alibaba出品亿级并发设计速成笔记太香了
- Exploding the circle of friends, Alibaba produced billion-level concurrent design quick notes are too fragrant
- MySQL3
- ExcelPatternTool: Excel表格-数据库互导工具
- Transfer Learning - Distant Domain Transfer Learning
- Activity Recommendation | Kuaishou StreamLake Brand Launch Conference, witness together on August 10!
- 《.NET物联网从零开始》系列
- Chapter 09 Use of Performance Analysis Tools [2. Index and Tuning] [MySQL Advanced]
- ORA-00604 ORA-02429
猜你喜欢
随机推荐
超越YOLO5-Face | YOLO-FaceV2正式开源Trick+学术点拉满
接口自动化测试框架postman tests常用方法
迅睿cms网站搬迁换了服务器后网站不能正常显示
开篇-开启全新的.NET现代应用开发体验
Activity Recommendation | Kuaishou StreamLake Brand Launch Conference, witness together on August 10!
Jin Jiu Yin Shi Interview and Job-hopping Season; Are You Ready?
如何发现一个有价值的 GameFi?
PHP技能评测
tcp中的三次握手与四次挥手
SAP ERP和ORACLE ERP的区别是哪些?
快速批量修改VOC格式数据集标签的文件名,即快速批量修改.xml文件名
直播预告|30分钟快速入门!来看可信分布式AI链桨的架构设计
从一次数据库误操作开始了解MySQL日志【bin log、redo log、undo log】
Gartner Hype Cycle:超融合技术将在2年内到达“生产力成熟期”
IJCAI2022 | DictBert:采用对比学习的字典描述知识增强的预训练语言模型
Object.defineProperty实时监听数据变化并更新页面
“配置”是把双刃剑,带你了解各种配置方法
习题:选择结构(一)
迁移学习——Joint Geometrical and Statistical Alignment for Visual Domain Adaptation
Xunrui cms website cannot be displayed normally after relocation and server change








