mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 07:22:16 +05:30
Fix extraction of age restricted videos
This commit is contained in:
parent
5a8825d016
commit
aa55e67389
@ -989,9 +989,15 @@ def fetch_video(id, region)
|
|||||||
|
|
||||||
# Try to pull streams from embed URL
|
# Try to pull streams from embed URL
|
||||||
if info["reason"]?
|
if info["reason"]?
|
||||||
embed_page = YT_POOL.client &.get("/embed/#{id}").body
|
required_parameters = URI::Params.new({
|
||||||
sts = embed_page.match(/"sts"\s*:\s*(?<sts>\d+)/).try &.["sts"]? || ""
|
"video_id" => [id],
|
||||||
embed_info = HTTP::Params.parse(YT_POOL.client &.get("/get_video_info?html5=1&video_id=#{id}&eurl=https://youtube.googleapis.com/v/#{id}&gl=US&hl=en&sts=#{sts}").body)
|
"eurl" => ["https://youtube.googleapis.com/v/#{id}"],
|
||||||
|
"html5" => ["1"],
|
||||||
|
"c" => ["TVHTML5"],
|
||||||
|
"cver" => ["6.20180913"],
|
||||||
|
})
|
||||||
|
|
||||||
|
embed_info = HTTP::Params.parse(YT_POOL.client &.get("/get_video_info?#{required_parameters}", headers: HTTP::Headers{"x-youtube-client-version" => "6.20180913"}).body)
|
||||||
|
|
||||||
if embed_info["player_response"]?
|
if embed_info["player_response"]?
|
||||||
player_response = JSON.parse(embed_info["player_response"])
|
player_response = JSON.parse(embed_info["player_response"])
|
||||||
|
Loading…
Reference in New Issue
Block a user