mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Add fix for missing hash keys
This commit is contained in:
parent
7a7049b25b
commit
d6bd893573
1 changed files with 6 additions and 6 deletions
|
@ -272,7 +272,7 @@ class Video
|
||||||
def fmt_stream(decrypt_function)
|
def fmt_stream(decrypt_function)
|
||||||
streams = [] of HTTP::Params
|
streams = [] of HTTP::Params
|
||||||
|
|
||||||
if fmt_streams = self.player_response["streamingData"]["formats"]?
|
if fmt_streams = self.player_response["streamingData"]?.try &.["formats"]?
|
||||||
fmt_streams.as_a.each do |fmt_stream|
|
fmt_streams.as_a.each do |fmt_stream|
|
||||||
if !fmt_stream.as_h?
|
if !fmt_stream.as_h?
|
||||||
next
|
next
|
||||||
|
@ -280,11 +280,11 @@ class Video
|
||||||
|
|
||||||
fmt = {} of String => String
|
fmt = {} of String => String
|
||||||
|
|
||||||
fmt["lmt"] = fmt_stream["lastModified"].as_s
|
fmt["lmt"] = fmt_stream["lastModified"]?.try &.as_s || "0"
|
||||||
fmt["projection_type"] = "1"
|
fmt["projection_type"] = "1"
|
||||||
fmt["type"] = fmt_stream["mimeType"].as_s
|
fmt["type"] = fmt_stream["mimeType"].as_s
|
||||||
fmt["clen"] = fmt_stream["contentLength"]?.try &.as_s || "0"
|
fmt["clen"] = fmt_stream["contentLength"]?.try &.as_s || "0"
|
||||||
fmt["bitrate"] = fmt_stream["bitrate"].as_i.to_s
|
fmt["bitrate"] = fmt_stream["bitrate"]?.try &.as_i.to_s || "0"
|
||||||
fmt["itag"] = fmt_stream["itag"].as_i.to_s
|
fmt["itag"] = fmt_stream["itag"].as_i.to_s
|
||||||
fmt["url"] = fmt_stream["url"].as_s
|
fmt["url"] = fmt_stream["url"].as_s
|
||||||
fmt["quality"] = fmt_stream["quality"].as_s
|
fmt["quality"] = fmt_stream["quality"].as_s
|
||||||
|
@ -338,7 +338,7 @@ class Video
|
||||||
def adaptive_fmts(decrypt_function)
|
def adaptive_fmts(decrypt_function)
|
||||||
adaptive_fmts = [] of HTTP::Params
|
adaptive_fmts = [] of HTTP::Params
|
||||||
|
|
||||||
if fmts = self.player_response["streamingData"]["adaptiveFormats"]?
|
if fmts = self.player_response["streamingData"]?.try &.["adaptiveFormats"]?
|
||||||
fmts.as_a.each do |adaptive_fmt|
|
fmts.as_a.each do |adaptive_fmt|
|
||||||
if !adaptive_fmt.as_h?
|
if !adaptive_fmt.as_h?
|
||||||
next
|
next
|
||||||
|
@ -351,11 +351,11 @@ class Video
|
||||||
end
|
end
|
||||||
fmt["init"] ||= "0-0"
|
fmt["init"] ||= "0-0"
|
||||||
|
|
||||||
fmt["lmt"] = adaptive_fmt["lastModified"].as_s
|
fmt["lmt"] = adaptive_fmt["lastModified"]?.try &.as_s || "0"
|
||||||
fmt["projection_type"] = "1"
|
fmt["projection_type"] = "1"
|
||||||
fmt["type"] = adaptive_fmt["mimeType"].as_s
|
fmt["type"] = adaptive_fmt["mimeType"].as_s
|
||||||
fmt["clen"] = adaptive_fmt["contentLength"]?.try &.as_s || "0"
|
fmt["clen"] = adaptive_fmt["contentLength"]?.try &.as_s || "0"
|
||||||
fmt["bitrate"] = adaptive_fmt["bitrate"].as_i.to_s
|
fmt["bitrate"] = adaptive_fmt["bitrate"]?.try &.as_i.to_s || "0"
|
||||||
fmt["itag"] = adaptive_fmt["itag"].as_i.to_s
|
fmt["itag"] = adaptive_fmt["itag"].as_i.to_s
|
||||||
fmt["url"] = adaptive_fmt["url"].as_s
|
fmt["url"] = adaptive_fmt["url"].as_s
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue