up vote 3 down vote favorite
5
share [g+] share [fb]

How do you get the duration (in minutes and seconds) of an MP3/wav audio file in Delphi ?

link|improve this question

69% accept rate
What API are you using to play the MP3 file? TMediaPlayer? – J. Polfer Jun 30 '09 at 18:15
no, I'm not playing the file, I just need the information from the file. – Attilah Jun 30 '09 at 18:18
feedback

9 Answers

up vote 4 down vote accepted

Here is C# implementation that shouldn't be too difficult to translate. Look at the getLengthInSeconds function.

link|improve this answer
+1, the code for computing the length in seconds is identical to what I found. – J. Polfer Jun 30 '09 at 18:26
feedback

Mp3 are divided into frames like this

You will need to count the number of frames

link|improve this answer
+1 for the info on frames. – J. Polfer Jun 30 '09 at 18:34
is not as simple as saying. The mp3 file have a lot of information before the frames start... – Tom Brito Jun 16 '10 at 19:26
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.

link|improve this answer
Accurate for CBR (constant bitrate), likely inaccurate for VBR (variable bitrate). In cases where only an approximate time is needed, this is a good idea – Charlie Salts Jun 30 '09 at 18:36
Although this method assumes you know the bitrate! – Charlie Salts Jun 30 '09 at 18:37
@Charlie Salts - Your'e correct, the formula won't work in VBR cases, and the forum post has no indication of how to determine the bitrate. Bruce McGee's answer is more complete, and I'd recommend that one over mine. – J. Polfer Jun 30 '09 at 18:42
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.

//add MPlayer to the uses clause;
//
//add the MP3PlayLength function to an existing form and 
//place a button on the form, linking the button click method to see how it works.

uses MPlayer;

function TForm1.MP3PlayLength(aMP3FileName:string):string;
var
  wMP : TMediaPlayer;
  wLen : Cardinal;
begin
  Try
     wMP := TMediaPlayer.Create(self);
     try
        wMP.Visible := false;
        wMP.parent := self;
        wMP.FileName := aMP3FileName;
        wMP.TimeFormat := tfMilliseconds;
        wMP.DeviceType := dtAutoSelect;
        wMP.Open;
        try
           wLen := trunc(wMP.Length / 1000);
           result := inttostr(wLen div 60)+':'+inttostr(wLen mod 60);
        finally
           wMP.Close;
        end;
     finally
        wMP.free;
     end;
  except
     result := '(err)';
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
   if OpenDialog1.Execute then
      showmessage(MP3PlayLength(OpenDialog1.FileName));
end;
link|improve this answer
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

   uses BASS;

   var
      playingChannel: HSTREAM;
      playingLength: Double;
      mp3filename: String;

    begin
      BASS_Init(-1,44100,0,Application.Handle,nil);
      playingChannel:=BASS_StreamCreateFile(FALSE,pchar(mp3filename),0,0,0);
      playingLength:=BASS_ChannelBytes2Seconds(playingChannel,
        BASS_ChannelGetLength(playingChannel,BASS_POS_BYTE));
    end;
link|improve this answer
feedback

Go to www.un4seen.com and download bass library you will get a lot of info from the forum section. ;)

link|improve this answer
feedback

Or, try MediaInfo.dll link text.

It's included a Delphi wrapper class. For example:

MediaInfo_Get(Handle, Stream_General, 0, 'Duration', Info_Text, Info_Name)

Other solution DSPack link text

size := FilterGraph.Duration;
link|improve this answer
feedback

checkout this blog, using ffmpeg for background workaround in a ruby project.

http://blog.ncodedev.com

link|improve this answer
feedback

It's been a long time since I played with Dephi.

Try,

FileSize(var aFile)
link|improve this answer
That will give the size in bytes, not minutes and seconds. – Charlie Salts Jun 30 '09 at 18:25
1  
@Charlie Salts - This was posted before OP explained that they wanted minutes/seconds. I'd give Secko a break. Also, FileSize() might be helpful and used in the formula Bruce and I posted about. – J. Polfer Jun 30 '09 at 18:29
The question was "How do you get the length of an MP3/wav audio file in Delphi?". – Secko Jun 30 '09 at 18:34
I would have assumed the poster meant length in time. If they had asked for the length of any file, I would have assumed file size. Getting the file size of any file is usually trivial, getting length of an MP3 sometimes is not trivial, hence the question. – Charlie Salts Jun 30 '09 at 18:39
2  
I agree, but my brain somehow just sent me a picture of the FileSize function. – Secko Jun 30 '09 at 18:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.