Length of an MP3/wav audio file - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T22:31:16Zhttp://stackoverflow.com/feeds/question/1065086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file2Length of an MP3/wav audio fileAttilah2009-06-30T18:00:48Z2009-07-01T12:29:24Z
<p>How do you get the duration (in minutes and seconds) of an MP3/wav audio file in Delphi ?</p>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1065109#1065109-1Answer by Secko for Length of an MP3/wav audio fileSecko2009-06-30T18:05:43Z2009-06-30T18:05:43Z<p>It's been a long time since I played with Dephi.</p>
<p>Try,</p>
<pre><code>FileSize(var aFile)
</code></pre>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1065181#10651812Answer by Eric for Length of an MP3/wav audio fileEric2009-06-30T18:19:58Z2009-06-30T18:19:58Z<p><a href="http://www.mp3-tech.org/programmer/frame%5Fheader.html" rel="nofollow">Mp3 are divided into frames like this</a></p>
<p>You will need to count the number of frames</p>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1065186#10651864Answer by Bruce McGee for Length of an MP3/wav audio fileBruce McGee2009-06-30T18:20:52Z2009-06-30T18:20:52Z<p>Here is <a href="http://www.devhood.com/tutorials/tutorial%5Fdetails.aspx?tutorial%5Fid=79" rel="nofollow">C#</a> implementation that shouldn't be too difficult to translate. Look at the getLengthInSeconds function.</p>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1065204#10652042Answer by sheepsimulator for Length of an MP3/wav audio filesheepsimulator2009-06-30T18:25:05Z2009-06-30T18:25:05Z<p>Not sure this will work, but I found this <a href="http://lists.runrev.com/pipermail/metacard/2003-August/005760.html" rel="nofollow">forum post</a>. I'd compare results with something like winamp to make sure it works.</p>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1066079#10660791Answer by Andy for Length of an MP3/wav audio fileAndy2009-06-30T21:08:35Z2009-06-30T21:08:35Z<p>Go to www.un4seen.com and download bass library you will get a lot of info from the forum section. ;)</p>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1066197#10661972Answer by Ryan J. Mills for Length of an MP3/wav audio fileRyan J. Mills2009-06-30T21:34:27Z2009-06-30T21:34:27Z<p>Under windows there is a reasonably effective way of determining the length of an MP3 file.</p>
<p>This is a huge hack but it seems to work. </p>
<p>Ryan.</p>
<pre><code>//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;
</code></pre>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1067741#10677411Answer by Icebob for Length of an MP3/wav audio fileIcebob2009-07-01T07:30:03Z2009-07-01T07:30:03Z<p>Or, try MediaInfo.dll <a href="http://mediainfo.sf.net" rel="nofollow">link text</a>.</p>
<p>It's included a Delphi wrapper class.
For example: </p>
<pre><code>MediaInfo_Get(Handle, Stream_General, 0, 'Duration', Info_Text, Info_Name)
</code></pre>
<p>Other solution DSPack <a href="http://www.progdigy.com/?page%5Fid=4" rel="nofollow">link text</a></p>
<pre><code>size := FilterGraph.Duration;
</code></pre>
http://stackoverflow.com/questions/1065086/length-of-an-mp3-wav-audio-file/1068899#10688991Answer by PA for Length of an MP3/wav audio filePA2009-07-01T12:29:24Z2009-07-01T12:29:24Z<p>I recommend you to use BASS</p>
<p><a href="http://www.un4seen.com/bass.html" rel="nofollow">http://www.un4seen.com/bass.html</a></p>
<p><em>BASS is an audio library .. to provide developers with powerful stream (MP3.. OGG.. ) functions. All in a tiny DLL, under 100KB in size.</em></p>
<p>it's very easy to use</p>
<pre><code> 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;
</code></pre>