kopia lustrzana https://github.com/iv-org/invidious
Add 'host' to '/videoplayback'
rodzic
11ff40bcd6
commit
f01152eda1
|
@ -4217,9 +4217,15 @@ end
|
||||||
get "/videoplayback" do |env|
|
get "/videoplayback" do |env|
|
||||||
query_params = env.params.query
|
query_params = env.params.query
|
||||||
|
|
||||||
fvip = query_params["fvip"]? || "3"
|
if query_params["host"]? && !query_params["host"].empty?
|
||||||
mn = query_params["mn"].split(",").pop
|
pp query_params["host"]
|
||||||
host = "https://r#{fvip}---#{mn}.googlevideo.com"
|
host = "https://#{query_params["host"]}"
|
||||||
|
else
|
||||||
|
fvip = query_params["fvip"]? || "3"
|
||||||
|
mn = query_params["mn"].split(",").pop
|
||||||
|
host = "https://r#{fvip}---#{mn}.googlevideo.com"
|
||||||
|
end
|
||||||
|
|
||||||
url = "/videoplayback?#{query_params.to_s}"
|
url = "/videoplayback?#{query_params.to_s}"
|
||||||
|
|
||||||
headers = HTTP::Headers.new
|
headers = HTTP::Headers.new
|
||||||
|
|
|
@ -317,6 +317,7 @@ class Video
|
||||||
end
|
end
|
||||||
|
|
||||||
streams.each do |fmt|
|
streams.each do |fmt|
|
||||||
|
fmt["url"] += "&host=" + (URI.parse(fmt["url"]).host || "")
|
||||||
fmt["url"] += decrypt_signature(fmt, decrypt_function)
|
fmt["url"] += decrypt_signature(fmt, decrypt_function)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -384,6 +385,7 @@ class Video
|
||||||
end
|
end
|
||||||
|
|
||||||
adaptive_fmts.each do |fmt|
|
adaptive_fmts.each do |fmt|
|
||||||
|
fmt["url"] += "&host=" + (URI.parse(fmt["url"]).host || "")
|
||||||
fmt["url"] += decrypt_signature(fmt, decrypt_function)
|
fmt["url"] += decrypt_signature(fmt, decrypt_function)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue