mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 17:03:25 +05:30
Fix signature URL regex
This commit is contained in:
parent
529aff3126
commit
83b1d80a5b
@ -190,6 +190,7 @@ def update_decrypt_function
|
|||||||
decrypt_function = fetch_decrypt_function
|
decrypt_function = fetch_decrypt_function
|
||||||
yield decrypt_function
|
yield decrypt_function
|
||||||
rescue ex
|
rescue ex
|
||||||
|
# TODO: Log error
|
||||||
next
|
next
|
||||||
ensure
|
ensure
|
||||||
sleep 1.minute
|
sleep 1.minute
|
||||||
|
@ -2,7 +2,7 @@ alias SigProc = Proc(Array(String), Int32, Array(String))
|
|||||||
|
|
||||||
def fetch_decrypt_function(id = "CvFH_6DNRCY")
|
def fetch_decrypt_function(id = "CvFH_6DNRCY")
|
||||||
document = YT_POOL.client &.get("/watch?v=#{id}&gl=US&hl=en").body
|
document = YT_POOL.client &.get("/watch?v=#{id}&gl=US&hl=en").body
|
||||||
url = document.match(/src="(?<url>\/yts\/jsbin\/player_ias-[^\/]+\/en_US\/base.js)"/).not_nil!["url"]
|
url = document.match(/src="(?<url>\/s\/player\/[^\/]+\/player_ias[^\/]+\/en_US\/base.js)"/).not_nil!["url"]
|
||||||
player = YT_POOL.client &.get(url).body
|
player = YT_POOL.client &.get(url).body
|
||||||
|
|
||||||
function_name = player.match(/^(?<name>[^=]+)=function\(\w\){\w=\w\.split\(""\);[^\. ]+\.[^( ]+/m).not_nil!["name"]
|
function_name = player.match(/^(?<name>[^=]+)=function\(\w\){\w=\w\.split\(""\);[^\. ]+\.[^( ]+/m).not_nil!["name"]
|
||||||
|
Loading…
Reference in New Issue
Block a user