So i have a script in my php file that takes a .wav file and converts it to a .mp3

exec( "lame ".SOMELOCATION."/".$file.".wav  ".LOCATION."/{$Sub}/".$file.".mp3 ");

I now need to take the file from the url and save it to the location listed above

For example:

it will come in like this

 http://someurl.com/audio/something.mp3 

and i need to take that mp3 and download it and save it in

LOCATION."/{$Sub}/".$file.".mp3 
link|improve this question

74% accept rate
My tag is php because its a PHP script. I used to convert to mp3 from wav now i have the mp3, so instead of converting i need to save it as is in the right location. My problem is i dont know how to take the url gived and save the mp3 locally. – Matt Aug 20 '10 at 15:57
Ah, right you are, I completely missed that. Removing comment. – JYelton Aug 20 '10 at 15:59
feedback

1 Answer

up vote 1 down vote accepted

Take the subdirectory from the URL: `http://example.com/?Sub=subdir

if (!isset($_GET['Sub']) || is_array($_GET['Sub']) ||
        !preg_match('/[a-z0-9]/i', $_GET['Sub']))
    die("invalid subdirectory");

exec( "lame ".SOMELOCATION."/".$file.".wav  ".
    LOCATION."/{$_GET['Sub']}/".$file.".mp3 ");
link|improve this answer
I am trying to skip this step. I just want to extract the mp3 from the url and save it locally. exec( "lame ".SOMELOCATION."/".$file.".wav ". LOCATION."/{$_GET['Sub']}/".$file.".mp3 "); – Matt Aug 20 '10 at 15:58
@John Apparently what you want and what you say you want are not the same thing. WHat you mean save locally? You realize this is PHP, "local" is server-side. That isn't what you want? – Artefacto Aug 20 '10 at 16:01
ok so basically what i want is this a copy file command copy_file_command(TEMP_LOC."/".$AudioFilename.".mp3", LOCATION."/{$Subdirectory}/".$AudioFilename.".mp3"); – Matt Aug 20 '10 at 16:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.