你可以使用 Python 的 requests 库来下载网页视频。
下面是一个示例代码:
import requests
url ='https://example.com/video.mp4'
response = requests.get(url, stream=True)
with open('video.mp4', 'wb') as f:
for chunk in response.iter_content(chunk_size=1024):
if chunk:
f.write(chunk)
在这个例子中,我们使用 requests 库的 get() 函数发送 HTTP 请求,并将响应内容写入本地文件中。我们使用 stream=True 参数来确保响应内容以流的形式返回,然后使用 iter_content() 函数来迭代响应内容的块。
注意:在下载视频时,要确保你有权限进行下载,并遵守相关的版权法律。