警告
新しいアップデートにより古くなったり壊れたりする可能性があります
注記
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
プレフィックスは 1080p です。d34478903cd03b5fef
は 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 )