Fix signature URL regex

This commit is contained in:
Omar Roth 2020-06-16 19:20:58 -05:00
parent 529aff3126
commit 83b1d80a5b
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
2 changed files with 2 additions and 1 deletions

View File

@ -190,6 +190,7 @@ def update_decrypt_function
decrypt_function = fetch_decrypt_function
yield decrypt_function
rescue ex
# TODO: Log error
next
ensure
sleep 1.minute

View File

@ -2,7 +2,7 @@ alias SigProc = Proc(Array(String), Int32, Array(String))
def fetch_decrypt_function(id = "CvFH_6DNRCY")
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
function_name = player.match(/^(?<name>[^=]+)=function\(\w\){\w=\w\.split\(""\);[^\. ]+\.[^( ]+/m).not_nil!["name"]