Namespace to manipulate mp3 files in 1.1

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi folks

Is there a namespace in the framework 1.1 to manipulate audio files (mp3).
The sort of functionality I am after is the ability to be able to select a
certain section of a file according to a specific start time from the
beginning of the file and length of time from that start time then saving
that particular section.

Also, I need to be able to concatenate two files together.

Kind regards

Ross Petersen
 
Hello, Ross!

AFAIK there is no such namespace built-in into .NET framework.

However, there is an API to do the job, have a look at
( http://www.codeproject.com/cs/media/ManWMF.asp )

R> Is there a namespace in the framework 1.1 to manipulate audio files
R> (mp3).
R> The sort of functionality I am after is the ability to be able to
R> select a
R> certain section of a file according to a specific start time from the
R> beginning of the file and length of time from that start time then
R> saving
R> that particular section.

R> Also, I need to be able to concatenate two files together.

R> Kind regards

R> Ross Petersen

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
 
Thanks Vadym

It looks like that article in CodeProject is the answer.

Kind regards

Ross Petersen
 
Back
Top