#!/usr/bin/php & /dev/null\n"; $lamecmd = "lame -b 128 -h \"".$dirname."/audiodump.wav\" \"".$dirname."/".$oldfilename."mp3\" >& /dev/null\n"; $cleanupcmd = "rm -rf \"".$dirname."/audiodump.wav\" \"".$filelist[$i]."\" >& /dev/null\n"; exec($mplayercmd); exec($lamecmd); exec($cleanupcmd); } $stoptime = time(); echo "Finished!\n"; $totaltime = $stoptime-$starttime; $secs = $totaltime % 60; $mins = ($totaltime/60) % 60; $hours = (($totaltime/60)/60) % 60; echo "Process took $hours hour(s), $mins minute(s), and $secs second(s)\n"; ?>