举例网站:Mini Impresora Térmica Bluetooth Portátil Inalámbrico | Envío gratis
ctrl+F4 先搜mp4 搜不到就搜m3u8 了
视频格式如下
(
- AVI(Audio Video Interleave):是一种由微软公司开发的音频和视频文件格式。
- MOV(QuickTime File Format):是由苹果公司开发的一种常见的视频文件格式。
- WMV(Windows Media Video):是由微软开发的视频文件格式,通常用于存储 Windows 平台上的音频和视频。
- FLV(Flash Video):是 Adobe 公司开发的一种流行的网络视频格式,常用于在线视频播放。
- MKV(Matroska Multimedia Container):是一种开放的多媒体容器格式,可容纳多种编码的音频、视频以及字幕轨道。
- RMVB(RealMedia Variable Bitrate):是 RealNetworks 公司开发的一种流行的视频格式,通常用于流媒体播放。
- WebM:是一种开放的多媒体文件格式,旨在成为互联网上的高质量视频格式。
)
找到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("下载失败")