警告
由于新的更新,可能已过时和损坏
笔记
仍然需要弄清楚如何下载 1440p 和 2160p 视频
?v=
并刷新页面K8R6OOjS7
?v=K8R6OOjS7
。解码Base64以获取信息使用 Requestly 等扩展来修改标头并进行如下修改。访问链接下载
使用包含.trycloudflare.com
的链接修改请求
Referer : https://abysscdn.com/
Sec-Fetch-Mode : cors
Content-Disposition : attachment
d34478903cd03b5fef
。不要复制.txt
mmx9cibe11.globalcdn39.one
。不要复制wss://
。将其替换为https://
sfbhnfiy1.globalcdn39.one
。不要复制wss://
。将其替换为https://
查看bundle.min.js。它展示了如何获取不同的视频源
www
前缀是720p, whw
前缀是1080pd34478903cd03b5fef
是 360pwww
+ d34478903cd03b5fef
为 720pwhw
+ d34478903cd03b5fef
是 1080phttps://sfbhnfiy1.globalcdn39.one/
与前缀 + 视频文件名whw
+ d34478903cd03b5fef
= https://sfbhnfiy1.globalcdn39.one/whwd34478903cd03b5fef
组合下面是下载每个视频源的 Python 代码示例
from requests import get
headers = { "Referer" : "https://abysscdn.com" }
url_360p_480p = "https://sfbhnfiy1.globalcdn39.one/d34478903cd03b5fef"
response = get ( url_360p_480p , headers = headers , stream = True )
with open ( "video_360p_480p.mp4" , "wb" ) as f :
for chunk in response . iter_content ( chunk_size = 64 * 1024 ):
f . write ( chunk )
url_720p = "https://sfbhnfiy1.globalcdn39.one/wwwd34478903cd03b5fef"
response = get ( url_720p , headers = headers , stream = True )
with open ( "video_720p.mp4" , "wb" ) as f :
for chunk in response . iter_content ( chunk_size = 64 * 1024 ):
f . write ( chunk )
url_1080p = "https://sfbhnfiy1.globalcdn39.one/whwd34478903cd03b5fef"
response = get ( url_1080p , headers = headers , stream = True )
with open ( "video_1080p.mp4" , "wb" ) as f :
for chunk in response . iter_content ( chunk_size = 64 * 1024 ):
f . write ( chunk )