Add 'host' to '/videoplayback'

This commit is contained in:
Omar Roth 2019-03-11 13:14:30 -05:00
parent 11ff40bcd6
commit f01152eda1
2 changed files with 11 additions and 3 deletions

View file

@ -4217,9 +4217,15 @@ end
get "/videoplayback" do |env| get "/videoplayback" do |env|
query_params = env.params.query query_params = env.params.query
if query_params["host"]? && !query_params["host"].empty?
pp query_params["host"]
host = "https://#{query_params["host"]}"
else
fvip = query_params["fvip"]? || "3" fvip = query_params["fvip"]? || "3"
mn = query_params["mn"].split(",").pop mn = query_params["mn"].split(",").pop
host = "https://r#{fvip}---#{mn}.googlevideo.com" 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

View file

@ -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