Forum Moderators: coopster
here is my script
<?php
// Edit upload location here
//$destination_path = getcwd().DIRECTORY_SEPARATOR;
$destination_path = "audio/";
$result = 0;
$target_path = $destination_path . basename( $_FILES['myfile']['name']);
if(@move_uploaded_file($_FILES['myfile']['tmp_name'], $target_path))
{
$result = 1;
setcookie("audioFileOne", $target_path);
}
sleep(1);
?>
thanks for any suggestions / help in advance
dave
is it possible to convert a wav file into an mp3 file with php?
One of the more common methods for this is to call system commands [php.net] like ffmpeg.