Audio components for c#

S

sengupta.amit

1.Anyone know of a .net library or component which can encode wav
files to mp3 format and support simultaneous conversions at the same
time (without having to use lame encoder externally).

2.Need a way of create m4b ipod files from an mp3.

Thanks in advance.
 
N

Nicholas Paldino [.NET/C# MVP]

You probably want to look into DirectShow. It is unmanaged, but there
is a sourceforge project which has helped with creating managed definitions
which will interop with the unmanaged code:

http://sourceforge.net/projects/directshownet/

There are samples that come with it as well.

You would basically use this to create a filter graph which would
perform the translation (assuming you have the appropriate
encoders/decoders).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top