Advertisement
Guest User

Untitled

a guest
Nov 14th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function redirect_to_video(page_url){
  2.   fetch("https://playapi.mtgx.tv/v1/videos/stream/" + page_url.match("\\/sisu\\/(?:[-a0-z9]+)\\/(\\d+)")[1])          
  3.     .then(function(response){return response.json();})
  4.     .then(function(response){
  5.       window.location.href = "http://xg5tbqm52h1pot9.babahhcdn.com/" + (response.streams.high || response.streams.medium).match("(?::tv3\\/)(.*)")[1];
  6.   });
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement