Zeater
11-18-2007, 07:31 PM
The following code, reduces an MP3 file length to x seconds. How do I save this music file as a new mp3 file?
$f = fopen("Upload/".$row['Path'], "rb");
$trash = fread($f, 2488320);
echo fread($f, 245760);
$trash = null ;
fclose($f);
$f = fopen("Upload/".$row['Path'], "rb");
$trash = fread($f, 2488320);
echo fread($f, 245760);
$trash = null ;
fclose($f);