mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 17:03:25 +05:30
Add 'raw=1' to '/watch' page
This commit is contained in:
parent
61f9e8667c
commit
8c22c226c0
@ -193,7 +193,7 @@ get "/watch" do |env|
|
|||||||
end
|
end
|
||||||
subscriptions ||= [] of String
|
subscriptions ||= [] of String
|
||||||
|
|
||||||
autoplay, video_loop, video_start, video_end, listen = process_video_params(env.params.query, preferences)
|
autoplay, video_loop, video_start, video_end, listen, raw, quality, autoplay = process_video_params(env.params.query, preferences)
|
||||||
if listen
|
if listen
|
||||||
env.params.query.delete_all("listen")
|
env.params.query.delete_all("listen")
|
||||||
end
|
end
|
||||||
@ -228,6 +228,18 @@ get "/watch" do |env|
|
|||||||
# TODO: Find highest resolution thumbnail automatically
|
# TODO: Find highest resolution thumbnail automatically
|
||||||
thumbnail = "https://i.ytimg.com/vi/#{video.id}/mqdefault.jpg"
|
thumbnail = "https://i.ytimg.com/vi/#{video.id}/mqdefault.jpg"
|
||||||
|
|
||||||
|
if raw
|
||||||
|
url = fmt_stream[0]["url"]
|
||||||
|
|
||||||
|
fmt_stream.each do |fmt|
|
||||||
|
if fmt["label"].split(" - ")[0] == quality
|
||||||
|
url = fmt["url"]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
next env.redirect url
|
||||||
|
end
|
||||||
|
|
||||||
rvs = [] of Hash(String, String)
|
rvs = [] of Hash(String, String)
|
||||||
if video.info.has_key?("rvs")
|
if video.info.has_key?("rvs")
|
||||||
video.info["rvs"].split(",").each do |rv|
|
video.info["rvs"].split(",").each do |rv|
|
||||||
|
Loading…
Reference in New Issue
Block a user