警告
由於新的更新,可能已過時和損壞
筆記
仍然需要弄清楚如何下載 1440p 和 2160p 視頻
?v=
並重新整理頁面K8R6OOjS7
?v=K8R6OOjS7
。解碼Base64以獲取訊息使用像 Requestly 這樣的擴充功能來修改 headers 並進行以下修改。訪問鏈接下載
使用包含.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 )