netrosly

yt2mp3

Oct 6th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. $video = $_GET['video'];
  4.  
  5. if(preg_match('/www.youtube.com/',$video))
  6. {
  7.     $link = "https://www.youtubeinmp3.com/fetch/?format=text&video=$video";
  8. }
  9. else
  10. {
  11.     $link = "https://www.youtubeinmp3.com/fetch/?format=text&video=https://www.youtube.com/watch?v=$video";
  12. }
  13.  
  14. $page = file_get_contents($link);
  15.  
  16. $split = explode("<br/>Link: ", $page);
  17.  
  18. echo $split[1];
  19.  
  20. ?>
Add Comment
Please, Sign In to add comment