How do you get the duration (in minutes and seconds) of an MP3/wav audio file in Delphi ?
feedback
|
|
Here is C# implementation that shouldn't be too difficult to translate. Look at the getLengthInSeconds function. | |||
feedback
|
|
Mp3 are divided into frames like this You will need to count the number of frames | |||||
feedback
|
|
Not sure this will work, but I found this forum post. I'd compare results with something like winamp to make sure it works. | |||||||
feedback
|
|
Under windows there is a reasonably effective way of determining the length of an MP3 file. This is a huge hack but it seems to work. Ryan.
| |||
|
feedback
|
|
I recommend you to use BASS http://www.un4seen.com/bass.html BASS is an audio library .. to provide developers with powerful stream (MP3.. OGG.. ) functions. All in a tiny DLL, under 100KB in size. it's very easy to use
| |||
|
feedback
|
|
Go to www.un4seen.com and download bass library you will get a lot of info from the forum section. ;) | |||
|
feedback
|
|
Or, try MediaInfo.dll link text. It's included a Delphi wrapper class. For example:
Other solution DSPack link text
| |||
|
feedback
|
|
checkout this blog, using ffmpeg for background workaround in a ruby project. | |||
|
feedback
|
|
It's been a long time since I played with Dephi. Try,
| |||||||||||||||
feedback
|