Pull dash URL from player response

This commit is contained in:
Omar Roth
2019-02-25 09:11:41 -06:00
parent 6b12449be4
commit 09d0972ab4
2 changed files with 5 additions and 5 deletions

View File

@@ -3735,8 +3735,8 @@ get "/api/manifest/dash/id/:id" do |env|
halt env, status_code: 403
end
if video.info["dashmpd"]?
manifest = client.get(video.info["dashmpd"]).body
if dashmpd = video.player_response["streamingData"]["dashManifestUrl"]?.try &.as_s
manifest = client.get(dashmpd).body
manifest = manifest.gsub(/<BaseURL>[^<]+<\/BaseURL>/) do |baseurl|
url = baseurl.lchop("<BaseURL>")
@@ -3993,7 +3993,7 @@ get "/videoplayback" do |env|
end
if response.status_code >= 400
halt env, status_code: 403
halt env, status_code: response.status_code
end
client = make_client(URI.parse(host), proxies, region)