1
I made a script that extracts the link from any video that is hosted in mp4upload, only when the link is extracted the ip of my site that is identified. What I wanted to know how to make the client’s ip be identified ? I have tried to use Curl but it does not work :/
<?php
$url = 'http://www.mp4upload.com/embed-'.$_GET['id'].'.html'; //:D
$v=@file_get_contents($url);
$source = explode("'file':", $v);
$source = explode(',', $source[1]);
$source = explode("'", $source[0]);
foreach($source as $link){$source = $link;if($source!=''){echo $video = $source;}}
?>
if you really need it, maybe a proxy can solve it, but the proxy would have to be your client’s ip.
– Daniel Omine