mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Refactor signature extractor
This commit is contained in:
parent
62ae836565
commit
5cd137d808
2 changed files with 3 additions and 3 deletions
|
@ -141,8 +141,7 @@ end
|
||||||
def update_decrypt_function
|
def update_decrypt_function
|
||||||
loop do
|
loop do
|
||||||
begin
|
begin
|
||||||
client = make_client(YT_URL)
|
decrypt_function = fetch_decrypt_function
|
||||||
decrypt_function = fetch_decrypt_function(client)
|
|
||||||
rescue ex
|
rescue ex
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
def fetch_decrypt_function(client, id = "CvFH_6DNRCY")
|
def fetch_decrypt_function(id = "CvFH_6DNRCY")
|
||||||
|
client = make_client(YT_URL)
|
||||||
document = client.get("/watch?v=#{id}").body
|
document = client.get("/watch?v=#{id}").body
|
||||||
url = document.match(/src="(?<url>\/yts\/jsbin\/player-.{9}\/en_US\/base.js)"/).not_nil!["url"]
|
url = document.match(/src="(?<url>\/yts\/jsbin\/player-.{9}\/en_US\/base.js)"/).not_nil!["url"]
|
||||||
player = client.get(url).body
|
player = client.get(url).body
|
||||||
|
|
Loading…
Reference in a new issue