赞
踩
举例网站:Mini Impresora Térmica Bluetooth Portátil Inalámbrico | Envío gratis
ctrl+F4 先搜mp4 搜不到就搜m3u8 了
视频格式如下
(
)
找到url以后用这个下载
注意:找到的是https:\u002F\u002Fhttp2.mlstatic.com\u002Fstorage\u002Fshorts-api\u002Fvideos-middleware\u002Fplaylists\u002FypM5Eh.m3u8
需要修改掉u002F,变成以下这个:
https://http2.mlstatic.com/storage/shorts-api/videos-middleware/playlists/ypM5Eh.m3u8
- import requests
- import os
-
- url = "https://http2.mlstatic.com/storage/shorts-api/videos-middleware/playlists/ypM5Eh.m3u8"
- filename = url.split("/")[-1]
- filepath = os.path.join(os.path.expanduser("~"), "Desktop", filename)
-
- response = requests.get(url)
- if response.status_code == 200:
- with open(filepath, 'wb') as file:
- file.write(response.content)
- print("文件已下载到桌面")
- else:
- print("下载失败")
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。