Possible Duplicate:
Get the length of an audio file php
i am using php for my project.i have to build some system where i need to get length of mp3 file.
how i can get length of mp3 file ?
i got suggetion from my previousquestion.
accept
You won’t be able to do audio processing correctly with PHP alone, you should take a look at the following:
You may use the getID3 library to read the file’s metadata. There is a attribute called
playtime_length(also see this code example) that you can read and convert to a floating point number using the phpfloatval()function.